]> git.sesse.net Git - ffmpeg/blob - libavformat/Makefile
raw ac3 auto detects parameters
[ffmpeg] / libavformat / Makefile
1 #
2 # libavformat Makefile
3 # (c) 2000, 2001, 2002 Fabrice Bellard
4 #
5 include ../config.mak
6
7 VPATH=$(SRC_PATH)/libavformat
8
9 CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
10
11 OBJS= utils.o cutils.o allformats.o
12 PPOBJS=
13
14 # mux and demuxes
15 OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o \
16       avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
17       yuv4mpeg.o
18
19 ifeq ($(CONFIG_RISKY),yes)
20 OBJS+= asf.o
21 endif
22
23 # image formats
24 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o
25 # file I/O
26 OBJS+= avio.o aviobuf.o file.o 
27 OBJS+= framehook.o 
28
29 ifeq ($(BUILD_STRPTIME),yes)
30 OBJS+= strptime.o
31 endif
32
33 ifeq ($(CONFIG_VIDEO4LINUX),yes)
34 OBJS+= grab.o
35 endif
36
37 ifeq ($(CONFIG_DV1394),yes)
38 OBJS+= dv1394.o
39 endif
40
41 ifeq ($(CONFIG_AUDIO_OSS),yes)
42 OBJS+= audio.o 
43 endif
44
45 ifeq ($(CONFIG_AUDIO_BEOS),yes)
46 PPOBJS+= beosaudio.o
47 endif
48
49 ifeq ($(CONFIG_NETWORK),yes)
50 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
51 # BeOS and Darwin network stuff
52 ifeq ($(NEED_INET_ATON),yes)
53 OBJS+= barpainet.o
54 endif
55 endif
56
57 ifeq ($(CONFIG_VORBIS),yes)
58 OBJS+= ogg.o
59 endif
60
61 LIB= $(LIBPREF)avformat$(LIBSUF)
62
63 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
64
65 all: $(LIB)
66
67 $(LIB): $(OBJS) $(PPOBJS)
68         rm -f $@
69         $(AR) rc $@ $(OBJS) $(PPOBJS)
70 ifneq ($(CONFIG_OS2),yes)
71         $(RANLIB) $@
72 endif
73
74 depend: $(SRCS)
75         $(CC) -MM $(CFLAGS) $^ 1>.depend
76
77 installlib: all
78         install -m 644 $(LIB) $(prefix)/lib
79         mkdir -p $(prefix)/include/ffmpeg
80         install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
81                 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
82                 $(SRC_PATH)/libavformat/rtspcodes.h \
83                 $(prefix)/include/ffmpeg
84
85 %.o: %.c
86         $(CC) $(CFLAGS) -c -o $@ $< 
87
88 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
89 %.o: %.cpp
90         g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< 
91
92 clean: 
93         rm -f *.o *.d .depend *~ *.a $(LIB)
94
95 #
96 # include dependency files if they exist
97 #
98 ifneq ($(wildcard .depend),)
99 include .depend
100 endif