diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2002-12-12 22:14:53 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2002-12-12 22:14:53 +0000 |
commit | 3bb7d2759764bd1f6e6915d394c32f55334dd451 (patch) | |
tree | 427c6db94d69ed141d3ce78bd21de218a1326a0f /src/input/libreal/Makefile.am | |
parent | 41760a052b481e67ba31af505352860be86b94bf (diff) | |
download | xine-lib-3bb7d2759764bd1f6e6915d394c32f55334dd451.tar.gz xine-lib-3bb7d2759764bd1f6e6915d394c32f55334dd451.tar.bz2 |
The rest of rtsp input plugin; sorry.
CVS patchset: 3496
CVS date: 2002/12/12 22:14:53
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 |