]> git.sesse.net Git - ffmpeg/blob - libavformat/Makefile
try to guess the codec for imag2pipe too
[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
20
21 ifeq ($(CONFIG_RISKY),yes)
22 OBJS+= asf.o
23 OBJS+= asf-enc.o
24 endif
25
26 ifeq ($(AMR_NB),yes)
27 OBJS+= amr.o
28 endif
29 ifeq ($(AMR_NB_FIXED),yes)
30 OBJS+= amr.o
31 endif
32 ifeq ($(AMR_WB),yes)
33 OBJS+= amr.o
34 endif
35
36 # image formats
37 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
38 # file I/O
39 OBJS+= avio.o aviobuf.o file.o 
40 OBJS+= framehook.o 
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_DC1394),yes)
51 OBJS+= dc1394.o
52 endif
53
54 ifeq ($(CONFIG_AUDIO_OSS),yes)
55 OBJS+= audio.o 
56 endif
57
58 ifeq ($(CONFIG_AUDIO_BEOS),yes)
59 PPOBJS+= beosaudio.o
60 EXTRALIBS+=-lbe -lmedia
61 # this should be the default !
62 EXTRALIBS+=-lavcodec -L../libavcodec
63 endif
64
65 ifeq ($(CONFIG_NETWORK),yes)
66 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
67 # BeOS and Darwin network stuff
68 ifeq ($(NEED_INET_ATON),yes)
69 OBJS+= barpainet.o
70 endif
71 endif
72
73 ifeq ($(CONFIG_VORBIS),yes)
74 OBJS+= ogg.o
75 endif
76
77 ifeq ($(TARGET_ARCH_SPARC64),yes)
78 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
79 endif
80
81 LIB= $(LIBPREF)avformat$(LIBSUF)
82 ifeq ($(BUILD_SHARED),yes)
83 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
84 endif
85
86 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
87
88 all: $(LIB) $(SLIB)
89
90 $(LIB): $(OBJS) $(PPOBJS)
91         rm -f $@
92         $(AR) rc $@ $(OBJS) $(PPOBJS)
93         $(RANLIB) $@
94
95 $(SLIB): $(OBJS)
96 ifeq ($(CONFIG_WIN32),yes)
97         $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
98         -lib /machine:i386 /def:$(@:.dll=.def)
99 else
100         $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)
101 endif
102
103 depend: $(SRCS)
104         $(CC) -MM $(CFLAGS) $^ 1>.depend
105
106 ifeq ($(BUILD_SHARED),yes)
107 install: all install-headers
108 ifeq ($(CONFIG_WIN32),yes)
109         install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
110 else
111         install -d $(prefix)/lib
112         install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
113         ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
114         ldconfig || true
115 endif
116 else
117 install:
118 endif
119
120 installlib: all install-headers
121         install -m 644 $(LIB) $(prefix)/lib
122
123 install-headers:
124         mkdir -p "$(prefix)/include/ffmpeg"
125         install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
126                 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
127                 $(SRC_PATH)/libavformat/rtspcodes.h \
128                 "$(prefix)/include/ffmpeg"
129
130 %.o: %.c
131         $(CC) $(CFLAGS) -c -o $@ $< 
132
133 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
134 %.o: %.cpp
135         g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< 
136
137 distclean clean: 
138         rm -f *.o *.d .depend *~ *.a *.so $(LIB)
139
140 #
141 # include dependency files if they exist
142 #
143 ifneq ($(wildcard .depend),)
144 include .depend
145 endif