3 # (c) 2000, 2001, 2002 Fabrice Bellard
7 VPATH=$(SRC_PATH)/libavformat
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
11 OBJS= utils.o cutils.o allformats.o
15 OBJS+=mpeg.o mpegts.o mpegtsenc.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 4xm.o flvenc.o flvdec.o
19 ifeq ($(CONFIG_RISKY),yes)
28 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o
30 OBJS+= avio.o aviobuf.o file.o
33 ifeq ($(BUILD_STRPTIME),yes)
37 ifeq ($(CONFIG_VIDEO4LINUX),yes)
41 ifeq ($(CONFIG_DV1394),yes)
45 ifeq ($(CONFIG_AUDIO_OSS),yes)
49 ifeq ($(CONFIG_AUDIO_BEOS),yes)
53 ifeq ($(CONFIG_NETWORK),yes)
54 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
55 # BeOS and Darwin network stuff
56 ifeq ($(NEED_INET_ATON),yes)
61 ifeq ($(CONFIG_VORBIS),yes)
65 LIB= $(LIBPREF)avformat$(LIBSUF)
66 ifeq ($(BUILD_SHARED),yes)
67 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
70 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
74 $(LIB): $(OBJS) $(PPOBJS)
76 $(AR) rc $@ $(OBJS) $(PPOBJS)
80 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
83 $(CC) -MM $(CFLAGS) $^ 1>.depend
86 ifeq ($(BUILD_SHARED),yes)
87 install -d $(prefix)/lib
88 install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
89 ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
91 mkdir -p $(prefix)/include/ffmpeg
92 install -m 644 $(VPATH)/avformat.h $(prefix)/include/ffmpeg/avformat.h
93 install -m 644 $(VPATH)/avio.h $(prefix)/include/ffmpeg/avio.h
94 install -m 644 $(VPATH)/rtp.h $(prefix)/include/ffmpeg/rtp.h
95 install -m 644 $(VPATH)/rtsp.h $(prefix)/include/ffmpeg/rtsp.h
96 install -m 644 $(VPATH)/rtspcodes.h $(prefix)/include/ffmpeg/rtspcodes.h
100 install -m 644 $(LIB) $(prefix)/lib
101 mkdir -p $(prefix)/include/ffmpeg
102 install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
103 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
104 $(SRC_PATH)/libavformat/rtspcodes.h \
105 $(prefix)/include/ffmpeg
108 $(CC) $(CFLAGS) -c -o $@ $<
110 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
112 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
115 rm -f *.o *.d .depend *~ *.a $(LIB)
118 # include dependency files if they exist
120 ifneq ($(wildcard .depend),)