diff options
Diffstat (limited to 'src/audio_out/Makefile.am')
-rw-r--r-- | src/audio_out/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/audio_out/Makefile.am b/src/audio_out/Makefile.am index 6451fcc37..ab5f1dac9 100644 --- a/src/audio_out/Makefile.am +++ b/src/audio_out/Makefile.am @@ -42,7 +42,8 @@ endif # all xine audio out plugins should be named like the # scheme "xineplug_ao_out_" # -lib_LTLIBRARIES = xineplug_ao_out_none.la $(oss_module) \ +lib_LTLIBRARIES = xineplug_ao_out_none.la xineplug_ao_out_file.la \ + $(oss_module) \ $(alsa_module) \ $(sun_module) \ $(arts_module) \ @@ -61,6 +62,10 @@ xineplug_ao_out_none_la_SOURCES = audio_none_out.c xineplug_ao_out_none_la_LIBADD = $(XINE_LIB) xineplug_ao_out_none_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_ao_out_file_la_SOURCES = audio_file_out.c +xineplug_ao_out_file_la_LIBADD = $(XINE_LIB) +xineplug_ao_out_file_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + xineplug_ao_out_oss_la_SOURCES = audio_oss_out.c xineplug_ao_out_oss_la_LIBADD = $(XINE_LIB) xineplug_ao_out_oss_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ |