]> git.sesse.net Git - ffmpeg/blob - libavformat/Makefile
demuxer for custom Wing Commander III movie (.mve) files
[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 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 dvcore.o dv.o \
17       yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
18       nut.o wc3movie.o
19
20 ifeq ($(CONFIG_RISKY),yes)
21 OBJS+= asf.o
22 endif
23
24 ifeq ($(AMR_NB),yes)
25 OBJS+= amr.o
26 endif
27
28 # image formats
29 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o
30 # file I/O
31 OBJS+= avio.o aviobuf.o file.o 
32 OBJS+= framehook.o 
33
34 ifeq ($(BUILD_STRPTIME),yes)
35 OBJS+= strptime.o
36 endif
37
38 ifeq ($(BUILD_LOCALTIME_R),yes)
39 OBJS+= localtime_r.o
40 endif
41
42 ifeq ($(CONFIG_VIDEO4LINUX),yes)
43 OBJS+= grab.o
44 endif
45
46 ifeq ($(CONFIG_DV1394),yes)
47 OBJS+= dv1394.o
48 endif
49
50 ifeq ($(CONFIG_AUDIO_OSS),yes)
51 OBJS+= audio.o 
52 endif
53
54 ifeq ($(CONFIG_AUDIO_BEOS),yes)
55 PPOBJS+= beosaudio.o
56 EXTRALIBS+=-lbe -lmedia
57 # this should be the default !
58 EXTRALIBS+=-lavcodec -L../libavcodec
59 endif
60
61 ifeq ($(CONFIG_NETWORK),yes)
62 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
63 # BeOS and Darwin network stuff
64 ifeq ($(NEED_INET_ATON),yes)
65 OBJS+= barpainet.o
66 endif
67 endif
68
69 ifeq ($(CONFIG_VORBIS),yes)
70 OBJS+= ogg.o
71 endif
72
73 LIB= $(LIBPREF)avformat$(LIBSUF)
74 ifeq ($(BUILD_SHARED),yes)
75 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
76 endif
77
78 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
79
80 all: $(LIB) $(SLIB)
81
82 $(LIB): $(OBJS) $(PPOBJS)
83         rm -f $@
84         $(AR) rc $@ $(OBJS) $(PPOBJS)
85         $(RANLIB) $@
86
87 $(SLIB): $(OBJS)
88 ifeq ($(TARGET_MINGW32),yes)
89         $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
90         -lib /machine:i386 /def:$(@:.dll=.def)
91 else
92         $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(AMREXTRALIBS) 
93 endif
94
95 depend: $(SRCS)
96         $(CC) -MM $(CFLAGS) $^ 1>.depend
97
98 install: all
99 ifeq ($(BUILD_SHARED),yes)
100         install -d $(prefix)/lib
101         install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
102         ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
103         ldconfig || true
104         mkdir -p $(prefix)/include/ffmpeg
105         install -m 644 $(VPATH)/avformat.h $(prefix)/include/ffmpeg/avformat.h
106         install -m 644 $(VPATH)/avio.h $(prefix)/include/ffmpeg/avio.h
107         install -m 644 $(VPATH)/rtp.h $(prefix)/include/ffmpeg/rtp.h
108         install -m 644 $(VPATH)/rtsp.h $(prefix)/include/ffmpeg/rtsp.h
109         install -m 644 $(VPATH)/rtspcodes.h $(prefix)/include/ffmpeg/rtspcodes.h
110 endif
111
112 installlib: all
113         install -m 644 $(LIB) $(prefix)/lib
114         mkdir -p $(prefix)/include/ffmpeg
115         install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
116                 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
117                 $(SRC_PATH)/libavformat/rtspcodes.h \
118                 $(prefix)/include/ffmpeg
119
120 %.o: %.c
121         $(CC) $(CFLAGS) -c -o $@ $< 
122
123 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
124 %.o: %.cpp
125         g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< 
126
127 clean: 
128         rm -f *.o *.d .depend *~ *.a $(LIB)
129
130 #
131 # include dependency files if they exist
132 #
133 ifneq ($(wildcard .depend),)
134 include .depend
135 endif