summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-20 22:10:48 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-20 22:10:48 +0000
commit8b72384757f4bcfbd87c572bb1d41cf3ca0c0b03 (patch)
treea1baed6560168fde23637baf7deef257b534c1d0
parent0cdcee1926293663877a31fdb9654986ac8f1120 (diff)
downloadmpv-8b72384757f4bcfbd87c572bb1d41cf3ca0c0b03.tar.bz2
mpv-8b72384757f4bcfbd87c572bb1d41cf3ca0c0b03.tar.xz
Makefile for DirectShow support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@175 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--Makefile.DS101
1 files changed, 101 insertions, 0 deletions
diff --git a/Makefile.DS b/Makefile.DS
new file mode 100644
index 0000000000..ff0a80c6e7
--- /dev/null
+++ b/Makefile.DS
@@ -0,0 +1,101 @@
+# DirectShow support (test code)
+# make -f makefile.DS
+
+# LINUX Makefile made by A'rpi / Astral
+# Some cleanup by LGB: * 'make -C dir' instead of 'cd dir;make;cd..'
+# * for loops instead of linear sequence of make directories
+# * some minor problems with make clean and distclean were corrected
+
+include config.mak
+
+#install...
+OWNER = root
+GROUP = root
+PERM = 755
+
+PRG = mplayer
+PRG_HQ = mplayerHQ
+PRG_AVIP = aviparse
+PRG_TV = tvision
+prefix = /usr/local
+BINDIR = ${prefix}/bin
+# BINDIR = /usr/local/bin
+SRCS = linux/getch2.c linux/timer-lx.c linux/shmem.c xa/xa_gsm.c lirc_mp.c cfgparser.c
+OBJS = linux/getch2.o linux/timer-lx.o linux/shmem.o xa/xa_gsm.o lirc_mp.o cfgparser.o
+CFLAGS = $(OPTFLAGS) -Iloader -Ilibvo # -Wall
+A_LIBS = -Lmp3lib -lMP3 -Llibac3 -lac3
+VO_LIBS = -Llibvo -lvo $(X_LIBS)
+
+.SUFFIXES: .c .o
+
+# .PHONY: all clean
+
+all: $(PRG)
+# $(PRG_AVIP)
+
+.c.o:
+ $(CC) -c $(CFLAGS) -DUSE_DIRECTSHOW -o $@ $<
+
+COMMONLIBS = libvo/libvo.a libac3/libac3.a mp3lib/libMP3.a
+
+loader/libloader.a:
+ $(MAKE) -C loader
+
+loader/DirectShow/libDS_Filter.a:
+ $(MAKE) -C loader/DirectShow
+
+libmpeg2/libmpeg2.a:
+ $(MAKE) -C libmpeg2
+
+libvo/libvo.a:
+ $(MAKE) -C libvo
+
+libac3/libac3.a:
+ $(MAKE) -C libac3
+
+mp3lib/libMP3.a:
+ $(MAKE) -C mp3lib
+
+opendivx/libdecore.a:
+ $(MAKE) -C opendivx
+
+encore/libencore.a:
+ $(MAKE) -C encore
+
+$(PRG): .depend mplayer.o $(OBJS) loader/libloader.a loader/DirectShow/libDS_Filter.a libmpeg2/libmpeg2.a opendivx/libdecore.a $(COMMONLIBS) encore/libencore.a
+ $(CC) $(CFLAGS) -o $(PRG) mplayer.o $(OBJS) $(XMM_LIBS) $(LIRC_LIBS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -Lloader/DirectShow -lDS_Filter -ldl -Llibmpeg2 -lmpeg2 -Lopendivx -ldecore $(VO_LIBS) -Lencore -lencore -lpthread -lstdc++
+
+$(PRG_HQ): .depend mplayerHQ.o $(OBJS) loader/libloader.a libmpeg2/libmpeg2.a opendivx/libdecore.a $(COMMONLIBS) encore/libencore.a
+ $(CC) $(CFLAGS) -o $(PRG_HQ) mplayerHQ.o $(OBJS) $(XMM_LIBS) $(LIRC_LIBS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -ldl -Llibmpeg2 -lmpeg2 -Lopendivx -ldecore $(VO_LIBS) -Lencore -lencore -lpthread
+
+$(PRG_AVIP): .depend aviparse.o $(OBJS) loader/libloader.a $(COMMONLIBS)
+ $(CC) $(CFLAGS) -o $(PRG_AVIP) aviparse.o $(OBJS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -ldl $(VO_LIBS) -lpthread
+
+$(PRG_TV): .depend tvision.o $(OBJS) $(COMMONLIBS)
+ $(CC) $(CFLAGS) -o $(PRG_TV) tvision.o $(OBJS) -lm $(TERMCAP_LIB) $(VO_LIBS)
+
+install: $(PRG)
+ install -g $(GROUP) -o $(OWNER) -m $(PERM) -s $(PRG) $(BINDIR)
+ install -D -m 644 DOCS/mplayer.1 $(prefix)/man/man1/mplayer.1
+
+clean:
+ rm -f *.o *~ $(OBJS)
+
+distclean:
+ @for a in mp3lib libac3 libmpeg2 opendivx encore libvo loader loader/DirectShow drivers drivers/syncfb ; do $(MAKE) -C $$a distclean ; done
+ rm -f *~ $(PRG) $(PRG_HQ) $(PRG_AVIP) $(PRG_TV) $(OBJS) *.o *.a .depend
+
+dep: depend
+
+depend: .depend
+ @for a in mp3lib libac3 libmpeg2 libvo opendivx encore loader/DirectShow ; do $(MAKE) -C $$a dep ; done
+
+.depend: Makefile config.mak config.h
+ makedepend -f- -- $(CFLAGS) -- mplayer.c mplayerHQ.c aviparse.c tvision.c $(SRCS) 1>.depend 2>/dev/null
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif