]> git.sesse.net Git - ffmpeg/blob - libavformat/Makefile
5ecd750f5ad75a1c5f9813cb6914a63fccc831a0
[ffmpeg] / libavformat / Makefile
1 #
2 # libavformat Makefile
3 # (c) 2000-2003 Fabrice Bellard
4 #
5 include ../config.mak
6
7 VPATH=$(SRC_PATH)/libavformat
8
9 CFLAGS=$(OPTFLAGS) -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 os_support.o allformats.o
12 PPOBJS=
13
14 # mux and demuxes
15 OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.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 movenc.o psxstr.o idroq.o ipmovie.o \
18       nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
19       sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o
20
21 AMROBJS=
22 ifeq ($(AMR_NB),yes)
23 AMROBJS= amr.o
24 endif
25 ifeq ($(AMR_NB_FIXED),yes)
26 AMROBJS= amr.o
27 endif
28 ifeq ($(AMR_WB),yes)
29 AMROBJS= amr.o
30 endif
31 OBJS+= $(AMROBJS)
32
33 # image formats
34 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
35 # file I/O
36 OBJS+= avio.o aviobuf.o file.o 
37 OBJS+= framehook.o 
38
39 ifeq ($(CONFIG_VIDEO4LINUX),yes)
40 OBJS+= grab.o
41 endif
42
43 ifeq ($(CONFIG_DV1394),yes)
44 OBJS+= dv1394.o
45 endif
46
47 ifeq ($(CONFIG_DC1394),yes)
48 OBJS+= dc1394.o
49 endif
50
51 ifeq ($(CONFIG_AUDIO_OSS),yes)
52 OBJS+= audio.o 
53 endif
54
55 ifeq ($(CONFIG_AUDIO_BEOS),yes)
56 PPOBJS+= beosaudio.o
57 EXTRALIBS+=-lbe -lmedia
58 # this should be the default !
59 EXTRALIBS+=-lavcodec -L../libavcodec
60 endif
61
62 ifeq ($(CONFIG_NETWORK),yes)
63 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
64 # BeOS and Darwin network stuff
65 ifeq ($(NEED_INET_ATON),yes)
66 OBJS+= barpainet.o
67 endif
68 endif
69
70 ifeq ($(CONFIG_LIBOGG),yes)
71 OBJS+= ogg.o
72 endif
73
74 ifeq ($(TARGET_ARCH_SPARC64),yes)
75 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
76 endif
77
78 LIB= $(LIBPREF)avformat$(LIBSUF)
79 ifeq ($(BUILD_SHARED),yes)
80 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
81 endif
82
83 EXTRALIBS+=-lavcodec -L../libavcodec
84 ifeq ($(CONFIG_MP3LAME),yes)
85 EXTRALIBS+=-lmp3lame
86 endif
87
88 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
89
90 all: $(LIB) $(SLIB)
91
92 $(LIB): $(OBJS) $(PPOBJS)
93         rm -f $@
94         $(AR) rc $@ $(OBJS) $(PPOBJS)
95         $(RANLIB) $@
96
97 $(SLIB): $(OBJS)
98 ifeq ($(CONFIG_WIN32),yes)
99         $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
100         -lib /machine:i386 /def:$(@:.dll=.def)
101 else
102         $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)
103 endif
104
105 depend: $(SRCS)
106         $(CC) -MM $(CFLAGS) $^ 1>.depend
107
108 ifeq ($(BUILD_SHARED),yes)
109 install: all install-headers
110 ifeq ($(CONFIG_WIN32),yes)
111         install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
112 else
113         install -d $(prefix)/lib
114         install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
115         ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
116         ldconfig || true
117 endif
118 else
119 install:
120 endif
121
122 installlib: all install-headers
123         install -m 644 $(LIB) "$(prefix)/lib"
124
125 install-headers:
126         mkdir -p "$(prefix)/include/ffmpeg"
127         install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
128                 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
129                 $(SRC_PATH)/libavformat/rtspcodes.h \
130                 "$(prefix)/include/ffmpeg"
131
132 %.o: %.c
133         $(CC) $(CFLAGS) -c -o $@ $< 
134
135 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
136 %.o: %.cpp
137         g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< 
138
139 distclean clean: 
140         rm -f *.o *.d .depend *~ *.a *.so $(LIB)
141
142 #
143 # include dependency files if they exist
144 #
145 ifneq ($(wildcard .depend),)
146 include .depend
147 endif