diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-04-24 20:53:00 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-04-24 20:53:00 +0000 |
commit | b45eeec7a33e6b7475ebf02e3635e7d37ed33544 (patch) | |
tree | 5dbd28fee8ed5052b96bf9ebaa02cc8c8aa1320b /src/audio_out/Makefile.am | |
parent | 8f4426252dba8db47beaea9b9956c03668c1a640 (diff) | |
download | xine-lib-b45eeec7a33e6b7475ebf02e3635e7d37ed33544.tar.gz xine-lib-b45eeec7a33e6b7475ebf02e3635e7d37ed33544.tar.bz2 |
Reunification of xine-lib and xine-output. Some code cleanups.
CVS patchset: 21
CVS date: 2001/04/24 20:53:00
Diffstat (limited to 'src/audio_out/Makefile.am')
-rw-r--r-- | src/audio_out/Makefile.am | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/audio_out/Makefile.am b/src/audio_out/Makefile.am new file mode 100644 index 000000000..220f5991d --- /dev/null +++ b/src/audio_out/Makefile.am @@ -0,0 +1,45 @@ +CFLAGS = @GLOBAL_CFLAGS@ -DXINE_COMPILE + +EXTRA_DIST = audio_alsa_out.c audio_esd_out.c + +if HAVE_ALSA +alsa_module = xineplug_ao_out_alsa.la +endif + +if HAVE_ESD +esd_module = xineplug_ao_out_esd.la +endif + +## +# IMPORTANT: +# --------- +# All of xine audio out plugins should be named like the +# scheme "xineplug_ao_out_" +# +##lib_LTLIBRARIES = xineplug_ao_out_oss.la $(alsa_module) $(esd_module) +lib_LTLIBRARIES = + +##xineplug_ao_out_oss_la_SOURCES = audio_oss_out.c resample.c +##xineplug_ao_out_oss_la_LDFLAGS = -avoid-version -module + +##xineplug_ao_out_alsa_la_SOURCES = audio_alsa_out.c resample.c +##xineplug_ao_out_alsa_la_LDFLAGS = -avoid-version -module + +##xineplug_ao_out_esd_la_SOURCES = audio_esd_out.c resample.c +##xineplug_ao_out_esd_la_LDFLAGS = -avoid-version -module + +noinst_HEADERS = audio_oss_out.h audio_alsa_out.h audio_esd_out.h resample.h + + +debug: + $(MAKE) CFLAGS="$(DEBUG_CFLAGS)" + + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in |