i forgot this. -10l :(

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2312 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-10-20 19:04:56 +00:00
parent 881e5d0783
commit 2b1d367101
1 changed files with 46 additions and 0 deletions

46
libmpdemux/Makefile Normal file
View File

@ -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