Mercurial > libavformat.hg
annotate Makefile @ 213:89a78842f6c2 libavformat
localtime_r patch by (Glenn Maynard <g_sf at zewt dot org>)
author | michaelni |
---|---|
date | Thu, 04 Sep 2003 09:52:39 +0000 |
parents | 84b7fd1abf2c |
children | 2f16e3066399 |
rev | line source |
---|---|
0 | 1 # |
2 # libavformat Makefile | |
3 # (c) 2000, 2001, 2002 Fabrice Bellard | |
4 # | |
5 include ../config.mak | |
6 | |
2 | 7 VPATH=$(SRC_PATH)/libavformat |
0 | 8 |
195
0edf7458da7b
* fixing a regression in mpeg encoder (not setting pix_fmt),
romansh
parents:
176
diff
changeset
|
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 |
0 | 10 |
11 OBJS= utils.o cutils.o allformats.o | |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
12 PPOBJS= |
0 | 13 |
14 # mux and demuxes | |
152
cc03a75cbde4
mpeg ts demux uses DVB SI info and generates correct PTS info - added prototype mpeg ts mux
bellard
parents:
146
diff
changeset
|
15 OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o raw.o rm.o \ |
203
184d22d04c84
* Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents:
201
diff
changeset
|
16 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dvcore.o dv.o \ |
211
349d63d52e7e
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
209
diff
changeset
|
17 yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o |
40 | 18 |
19 ifeq ($(CONFIG_RISKY),yes) | |
20 OBJS+= asf.o | |
21 endif | |
22 | |
146 | 23 ifeq ($(AMR_NB),yes) |
24 OBJS+= amr.o | |
25 endif | |
26 | |
20 | 27 # image formats |
55 | 28 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o |
0 | 29 # file I/O |
30 OBJS+= avio.o aviobuf.o file.o | |
20 | 31 OBJS+= framehook.o |
0 | 32 |
33 ifeq ($(BUILD_STRPTIME),yes) | |
34 OBJS+= strptime.o | |
35 endif | |
36 | |
213
89a78842f6c2
localtime_r patch by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
212
diff
changeset
|
37 ifeq ($(BUILD_LOCALTIME_R),yes) |
89a78842f6c2
localtime_r patch by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
212
diff
changeset
|
38 OBJS+= localtime_r.o |
89a78842f6c2
localtime_r patch by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
212
diff
changeset
|
39 endif |
89a78842f6c2
localtime_r patch by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
212
diff
changeset
|
40 |
0 | 41 ifeq ($(CONFIG_VIDEO4LINUX),yes) |
42 OBJS+= grab.o | |
43 endif | |
44 | |
27
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
45 ifeq ($(CONFIG_DV1394),yes) |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
46 OBJS+= dv1394.o |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
47 endif |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
48 |
0 | 49 ifeq ($(CONFIG_AUDIO_OSS),yes) |
50 OBJS+= audio.o | |
51 endif | |
52 | |
53 ifeq ($(CONFIG_AUDIO_BEOS),yes) | |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
54 PPOBJS+= beosaudio.o |
171
fe5fc579b4de
BeOS fix: NOT every ld likes undefined syms, include C++ objs, and link to libs needed for audio in.
mmu_man
parents:
167
diff
changeset
|
55 EXTRALIBS+=-lbe -lmedia |
fe5fc579b4de
BeOS fix: NOT every ld likes undefined syms, include C++ objs, and link to libs needed for audio in.
mmu_man
parents:
167
diff
changeset
|
56 # this should be the default ! |
fe5fc579b4de
BeOS fix: NOT every ld likes undefined syms, include C++ objs, and link to libs needed for audio in.
mmu_man
parents:
167
diff
changeset
|
57 EXTRALIBS+=-lavcodec -L../libavcodec |
0 | 58 endif |
59 | |
60 ifeq ($(CONFIG_NETWORK),yes) | |
61 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o | |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
62 # BeOS and Darwin network stuff |
1
464f4e8aa417
More changes to make things compile on more platforms
philipjsg
parents:
0
diff
changeset
|
63 ifeq ($(NEED_INET_ATON),yes) |
0 | 64 OBJS+= barpainet.o |
65 endif | |
66 endif | |
67 | |
68 ifeq ($(CONFIG_VORBIS),yes) | |
69 OBJS+= ogg.o | |
70 endif | |
71 | |
22
65433f1b2549
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
20
diff
changeset
|
72 LIB= $(LIBPREF)avformat$(LIBSUF) |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
73 ifeq ($(BUILD_SHARED),yes) |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
74 SLIB= $(SLIBPREF)avformat$(SLIBSUF) |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
75 endif |
0 | 76 |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
77 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp) |
23
f6aae828c320
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
22
diff
changeset
|
78 |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
79 all: $(LIB) $(SLIB) |
0 | 80 |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
81 $(LIB): $(OBJS) $(PPOBJS) |
0 | 82 rm -f $@ |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
83 $(AR) rc $@ $(OBJS) $(PPOBJS) |
0 | 84 $(RANLIB) $@ |
85 | |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
86 $(SLIB): $(OBJS) |
212
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
87 ifeq ($(TARGET_MINGW32),yes) |
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
88 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll |
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
89 -lib /machine:i386 /def:$(@:.dll=.def) |
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
90 else |
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
91 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(AMREXTRALIBS) |
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
92 endif |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
93 |
43
a23fb606308a
added basic png handling - do not remake dependencies automatically
bellard
parents:
40
diff
changeset
|
94 depend: $(SRCS) |
26 | 95 $(CC) -MM $(CFLAGS) $^ 1>.depend |
96 | |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
97 install: all |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
98 ifeq ($(BUILD_SHARED),yes) |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
99 install -d $(prefix)/lib |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
100 install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
101 ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
102 ldconfig || true |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
103 mkdir -p $(prefix)/include/ffmpeg |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
104 install -m 644 $(VPATH)/avformat.h $(prefix)/include/ffmpeg/avformat.h |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
105 install -m 644 $(VPATH)/avio.h $(prefix)/include/ffmpeg/avio.h |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
106 install -m 644 $(VPATH)/rtp.h $(prefix)/include/ffmpeg/rtp.h |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
107 install -m 644 $(VPATH)/rtsp.h $(prefix)/include/ffmpeg/rtsp.h |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
108 install -m 644 $(VPATH)/rtspcodes.h $(prefix)/include/ffmpeg/rtspcodes.h |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
109 endif |
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
110 |
0 | 111 installlib: all |
112 install -m 644 $(LIB) $(prefix)/lib | |
113 mkdir -p $(prefix)/include/ffmpeg | |
16
863c1133ba73
libav -> libavformat in Makefile patch by (Thomas Jarosch <tomj at simonv dot com>)
michaelni
parents:
2
diff
changeset
|
114 install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \ |
863c1133ba73
libav -> libavformat in Makefile patch by (Thomas Jarosch <tomj at simonv dot com>)
michaelni
parents:
2
diff
changeset
|
115 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \ |
863c1133ba73
libav -> libavformat in Makefile patch by (Thomas Jarosch <tomj at simonv dot com>)
michaelni
parents:
2
diff
changeset
|
116 $(SRC_PATH)/libavformat/rtspcodes.h \ |
0 | 117 $(prefix)/include/ffmpeg |
118 | |
119 %.o: %.c | |
120 $(CC) $(CFLAGS) -c -o $@ $< | |
121 | |
122 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings | |
123 %.o: %.cpp | |
124 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< | |
125 | |
126 clean: | |
26 | 127 rm -f *.o *.d .depend *~ *.a $(LIB) |
128 | |
129 # | |
130 # include dependency files if they exist | |
131 # | |
132 ifneq ($(wildcard .depend),) | |
133 include .depend | |
134 endif |