changeset 2311:038038c7d7e9

i forgot this. -10l :(
author arpi
date Sat, 20 Oct 2001 19:04:56 +0000
parents 9e059416eea6
children 0294cef61b74
files libmpdemux/Makefile
diffstat 1 files changed, 46 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libmpdemux/Makefile	Sat Oct 20 19:04:56 2001 +0000
@@ -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