summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-20 19:04:56 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-20 19:04:56 +0000
commit2b1d3671018ce6cf57ac085528cf8fc6a7db9546 (patch)
tree53a1bf95e3fb00f70c90e8c343db92155bc7d28a /libmpdemux
parent881e5d0783d66de0d3efe4b633aa413a277c5b18 (diff)
downloadmpv-2b1d3671018ce6cf57ac085528cf8fc6a7db9546.tar.bz2
mpv-2b1d3671018ce6cf57ac085528cf8fc6a7db9546.tar.xz
i forgot this. -10l :(
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2312 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/libmpdemux/Makefile b/libmpdemux/Makefile
new file mode 100644
index 0000000000..e0e041732b
--- /dev/null
+++ b/libmpdemux/Makefile
@@ -0,0 +1,46 @@
+
+LIBNAME = libmpdemux.a
+
+include ../config.mak
+
+SRCS = asfheader.c aviheader.c aviprint.c aviwrite.c demux_asf.c demux_avi.c demux_mov.c demux_mpg.c demuxer.c dvdauth.c open.c parse_es.c stream.c test.c
+ifeq ($(STREAMING),yes)
+SRCS += asf_streaming.c url.c http.c network.c
+endif
+
+OBJS = $(SRCS:.c=.o)
+INCLUDE = -I../loader $(EXTRA_INC)
+CFLAGS = $(OPTFLAGS) $(INCLUDE)
+
+.SUFFIXES: .c .o
+
+# .PHONY: all clean
+
+all: $(LIBNAME)
+
+.c.o:
+ $(CC) -c $(CFLAGS) -o $@ $<
+
+$(LIBNAME): $(OBJS)
+ $(AR) r $(LIBNAME) $(OBJS)
+
+test: $(LIBNAME) test.c
+ $(CC) $(CFLAGS) test.c ../mp_msg.c -o test -L. -lmpdemux -ldvdread -lz -lpthread
+
+clean:
+ rm -f *.o *.a *~
+
+distclean:
+ rm -f test Makefile.bak *.o *.a *~ .depend
+
+dep: depend
+
+depend:
+ $(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif