annotate libmpdemux/Makefile @ 2338:4f3e8c8ea32f

includes cleanup
author arpi
date Sun, 21 Oct 2001 15:47:31 +0000
parents e22ec6fce385
children 451426046a14
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2311
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
1
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
2 LIBNAME = libmpdemux.a
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
3
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
4 include ../config.mak
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
5
2322
e22ec6fce385 cache2 support
arpi
parents: 2312
diff changeset
6 SRCS = cache2.c 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
2311
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
7 ifeq ($(STREAMING),yes)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
8 SRCS += asf_streaming.c url.c http.c network.c
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
9 endif
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
10
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
11 OBJS = $(SRCS:.c=.o)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
12 INCLUDE = -I../loader $(EXTRA_INC)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
13 CFLAGS = $(OPTFLAGS) $(INCLUDE)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
14
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
15 .SUFFIXES: .c .o
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
16
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
17 # .PHONY: all clean
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
18
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
19 all: $(LIBNAME)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
20
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
21 .c.o:
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
22 $(CC) -c $(CFLAGS) -o $@ $<
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
23
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
24 $(LIBNAME): $(OBJS)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
25 $(AR) r $(LIBNAME) $(OBJS)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
26
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
27 test: $(LIBNAME) test.c
2322
e22ec6fce385 cache2 support
arpi
parents: 2312
diff changeset
28 $(CC) $(CFLAGS) test.c ../mp_msg.c ../linux/shmem.c -o test -L. -lmpdemux -ldvdread -lz -lpthread
2311
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
29
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
30 clean:
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
31 rm -f *.o *.a *~
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
32
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
33 distclean:
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
34 rm -f test Makefile.bak *.o *.a *~ .depend
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
35
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
36 dep: depend
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
37
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
38 depend:
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
39 $(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
40
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
41 #
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
42 # include dependency files if they exist
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
43 #
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
44 ifneq ($(wildcard .depend),)
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
45 include .depend
038038c7d7e9 i forgot this. -10l :(
arpi
parents:
diff changeset
46 endif