Mercurial > libavformat.hg
annotate Makefile @ 278:1344cea6e2a8 libavformat
make it compatible with older make (debian stable - make 3.79.1)
| author | alex |
|---|---|
| date | Tue, 14 Oct 2003 11:36:03 +0000 |
| parents | 9fa2ec3b9982 |
| children | 31cd17d77178 |
| rev | line source |
|---|---|
| 0 | 1 # |
| 2 # libavformat Makefile | |
| 251 | 3 # (c) 2000-2003 Fabrice Bellard |
| 0 | 4 # |
| 5 include ../config.mak | |
| 6 | |
| 2 | 7 VPATH=$(SRC_PATH)/libavformat |
| 0 | 8 |
|
260
f3b8a6e60e71
PowerPC warnings & optimisations patch by (Dan Christiansen <danchr at daimi dot au dot dk>)
michaelni
parents:
258
diff
changeset
|
9 CFLAGS= -Wall $(OPTFLAGS) -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 |
|
230
9f4f4ca9f7b5
simpler strptime - added os_support.[ch] - moved localtime_r to os_support.c
bellard
parents:
225
diff
changeset
|
11 OBJS= utils.o cutils.o os_support.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 \ |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
260
diff
changeset
|
16 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \ |
|
219
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
213
diff
changeset
|
17 yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \ |
| 274 | 18 nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o |
| 40 | 19 |
| 20 ifeq ($(CONFIG_RISKY),yes) | |
| 21 OBJS+= asf.o | |
| 22 endif | |
| 23 | |
|
278
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
24 ifeq ($(AMR_NB),yes) |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
25 OBJS+= amr.o |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
26 endif |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
27 ifeq ($(AMR_NB_FIXED),yes) |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
28 OBJS+= amr.o |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
29 endif |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
30 ifeq ($(AMR_WB),yes) |
| 146 | 31 OBJS+= amr.o |
| 32 endif | |
| 33 | |
| 20 | 34 # image formats |
| 55 | 35 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o |
| 0 | 36 # file I/O |
| 37 OBJS+= avio.o aviobuf.o file.o | |
| 20 | 38 OBJS+= framehook.o |
| 0 | 39 |
| 40 ifeq ($(CONFIG_VIDEO4LINUX),yes) | |
| 41 OBJS+= grab.o | |
| 42 endif | |
| 43 | |
|
27
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
44 ifeq ($(CONFIG_DV1394),yes) |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
45 OBJS+= dv1394.o |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
46 endif |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
47 |
| 0 | 48 ifeq ($(CONFIG_AUDIO_OSS),yes) |
| 49 OBJS+= audio.o | |
| 50 endif | |
| 51 | |
| 52 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
|
53 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
|
54 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
|
55 # 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
|
56 EXTRALIBS+=-lavcodec -L../libavcodec |
| 0 | 57 endif |
| 58 | |
| 59 ifeq ($(CONFIG_NETWORK),yes) | |
| 60 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
|
61 # BeOS and Darwin network stuff |
|
1
464f4e8aa417
More changes to make things compile on more platforms
philipjsg
parents:
0
diff
changeset
|
62 ifeq ($(NEED_INET_ATON),yes) |
| 0 | 63 OBJS+= barpainet.o |
| 64 endif | |
| 65 endif | |
| 66 | |
| 67 ifeq ($(CONFIG_VORBIS),yes) | |
| 68 OBJS+= ogg.o | |
| 69 endif | |
| 70 | |
|
22
65433f1b2549
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
20
diff
changeset
|
71 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
|
72 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
|
73 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
|
74 endif |
| 0 | 75 |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
76 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp) |
|
23
f6aae828c320
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
22
diff
changeset
|
77 |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
78 all: $(LIB) $(SLIB) |
| 0 | 79 |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
80 $(LIB): $(OBJS) $(PPOBJS) |
| 0 | 81 rm -f $@ |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
82 $(AR) rc $@ $(OBJS) $(PPOBJS) |
| 0 | 83 $(RANLIB) $@ |
| 84 | |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
85 $(SLIB): $(OBJS) |
| 248 | 86 ifeq ($(CONFIG_WIN32),yes) |
| 251 | 87 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll |
|
212
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
88 -lib /machine:i386 /def:$(@:.dll=.def) |
|
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
89 else |
| 251 | 90 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) |
|
212
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
91 endif |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
92 |
|
43
a23fb606308a
added basic png handling - do not remake dependencies automatically
bellard
parents:
40
diff
changeset
|
93 depend: $(SRCS) |
| 26 | 94 $(CC) -MM $(CFLAGS) $^ 1>.depend |
| 95 | |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
96 ifeq ($(BUILD_SHARED),yes) |
| 248 | 97 install: all install-headers |
| 98 ifeq ($(CONFIG_WIN32),yes) | |
| 99 install -s -m 755 $(SLIB) "$(prefix)" | |
| 100 else | |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
101 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
|
102 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
|
103 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
|
104 ldconfig || true |
| 248 | 105 endif |
| 106 else | |
| 107 install: | |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
108 endif |
|
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
109 |
| 248 | 110 installlib: all install-headers |
| 0 | 111 install -m 644 $(LIB) $(prefix)/lib |
| 248 | 112 |
| 113 install-headers: | |
| 114 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
|
115 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
|
116 $(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
|
117 $(SRC_PATH)/libavformat/rtspcodes.h \ |
| 248 | 118 "$(prefix)/include/ffmpeg" |
| 0 | 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: | |
| 26 | 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 |
