diff options
Diffstat (limited to 'src/libxineadec/Makefile.am')
-rw-r--r-- | src/libxineadec/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am new file mode 100644 index 000000000..9cd322459 --- /dev/null +++ b/src/libxineadec/Makefile.am @@ -0,0 +1,26 @@ +# +# the Makefile for the native xine audio decoders +# + +libdir = $(XINE_PLUGINDIR) + +lib_LTLIBRARIES = xineplug_decode_roqaudio.la + +xineplug_decode_roqaudio_la_SOURCES = roqaudio.c +xineplug_decode_roqaudio_la_LDFLAGS = -avoid-version -module + +# noinst_HEADERS = + +debug: + @$(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 |