]> git.sesse.net Git - ffmpeg/blob - libavformat/Makefile
image2 / image API cleanup phase-1
[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
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_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 ifeq ($(TARGET_ARCH_SPARC64),yes)
74 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
75 endif
76
77 LIB= $(LIBPREF)avformat$(LIBSUF)
78 ifeq ($(BUILD_SHARED),yes)
79 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
80 endif
81
82 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
83
84 all: $(LIB) $(SLIB)
85
86 $(LIB): $(OBJS) $(PPOBJS)
87         rm -f $@
88         $(AR) rc $@ $(OBJS) $(PPOBJS)
89         $(RANLIB) $@
90
91 $(SLIB): $(OBJS)
92 ifeq ($(CONFIG_WIN32),yes)
93         $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
94         -lib /machine:i386 /def:$(@:.dll=.def)
95 else
96         $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)
97 endif
98
99 depend: $(SRCS)
100         $(CC) -MM $(CFLAGS) $^ 1>.depend
101
102 ifeq ($(BUILD_SHARED),yes)
103 install: all install-headers
104 ifeq ($(CONFIG_WIN32),yes)
105         install -s -m 755 $(SLIB) "$(prefix)"
106 else
107         install -d $(prefix)/lib
108         install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
109         ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
110         ldconfig || true
111 endif
112 else
113 install:
114 endif
115
116 installlib: all install-headers
117         install -m 644 $(LIB) $(prefix)/lib
118
119 install-headers:
120         mkdir -p "$(prefix)/include/ffmpeg"
121         install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
122                 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
123                 $(SRC_PATH)/libavformat/rtspcodes.h \
124                 "$(prefix)/include/ffmpeg"
125
126 %.o: %.c
127         $(CC) $(CFLAGS) -c -o $@ $< 
128
129 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
130 %.o: %.cpp
131         g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< 
132
133 distclean clean: 
134         rm -f *.o *.d .depend *~ *.a $(LIB)
135
136 #
137 # include dependency files if they exist
138 #
139 ifneq ($(wildcard .depend),)
140 include .depend
141 endif