diff options
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 |