diff options
Diffstat (limited to 'src/input/libreal/Makefile.am')
-rw-r--r-- | src/input/libreal/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/input/libreal/Makefile.am b/src/input/libreal/Makefile.am new file mode 100644 index 000000000..6a1cd9167 --- /dev/null +++ b/src/input/libreal/Makefile.am @@ -0,0 +1,31 @@ +REAL_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE + +AM_CFLAGS = $(REAL_CFLAGS) @ANSI_FLAGS@ + +noinst_LTLIBRARIES = libreal.la + +libreal_la_SOURCES = \ + real.c \ + asmrp.c \ + rmff.c + +libreal_la_LDFLAGS = $(THREAD_LIBS) -avoid-version -module + +noinst_HEADERS = \ + real.h \ + asmrp.h \ + rmff.h + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(DVD_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 |