diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-18 03:03:07 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-18 03:03:07 +0000 |
commit | 0ba9ed25f78cfca8600dedea68625b6ec2f8b411 (patch) | |
tree | c74724a30ce797069b56a8ad93dbc5803590142f /src/libreal/Makefile.am | |
parent | 13cce3095c34c7a39ff3bf33275126f91da64b8b (diff) | |
download | xine-lib-0ba9ed25f78cfca8600dedea68625b6ec2f8b411.tar.gz xine-lib-0ba9ed25f78cfca8600dedea68625b6ec2f8b411.tar.bz2 |
first steps towards a working real demuxer and using binary-only real codecs
CVS patchset: 3285
CVS date: 2002/11/18 03:03:07
Diffstat (limited to 'src/libreal/Makefile.am')
-rw-r--r-- | src/libreal/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/libreal/Makefile.am b/src/libreal/Makefile.am new file mode 100644 index 000000000..6505cc9c0 --- /dev/null +++ b/src/libreal/Makefile.am @@ -0,0 +1,29 @@ +## +## Process this file with automake to produce Makefile.in +## + +AM_CFLAGS = $(VORBIS_CFLAGS) + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +libdir = $(XINE_PLUGINDIR) + +lib_LTLIBRARIES = xineplug_decode_real.la + +xineplug_decode_real_la_SOURCES = xine_decoder.c +xineplug_decode_real_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + +debug: +# @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(OGG_CFLAGS) $(VORBIS_CFLAGS)" + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" + +install-debug: debug + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +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 |