annotate Makefile @ 167:e284cddf0509 libavformat

Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
author michaelni
date Fri, 11 Jul 2003 21:33:27 +0000
parents 99fbacf0f764
children fe5fc579b4de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 #
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
2 # libavformat Makefile
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 # (c) 2000, 2001, 2002 Fabrice Bellard
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
4 #
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
5 include ../config.mak
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
6
2
06b1347b3c8e fixed multidir compile
bellard
parents: 1
diff changeset
7 VPATH=$(SRC_PATH)/libavformat
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8
05318cf2e886 renamed libav to libavformat
bellard
parents:
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
10
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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 \
47
45308962220f added jpeg image encoder and decoder (new YUV handling routines and mjpeg codec fixes are necessary to go further)
bellard
parents: 43
diff changeset
16 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
164
99fbacf0f764 flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents: 152
diff changeset
17 yuv4mpeg.o 4xm.o flvenc.o flvdec.o
40
721705c1f995 --disable-risky support
michaelni
parents: 27
diff changeset
18
721705c1f995 --disable-risky support
michaelni
parents: 27
diff changeset
19 ifeq ($(CONFIG_RISKY),yes)
721705c1f995 --disable-risky support
michaelni
parents: 27
diff changeset
20 OBJS+= asf.o
721705c1f995 --disable-risky support
michaelni
parents: 27
diff changeset
21 endif
721705c1f995 --disable-risky support
michaelni
parents: 27
diff changeset
22
146
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
23 ifeq ($(AMR_NB),yes)
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
24 OBJS+= amr.o
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
25 endif
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
26
20
3d52de18ecc3 added still image support
bellard
parents: 16
diff changeset
27 # image formats
55
bde449e6b743 yes, PNG can be simpler :-)
bellard
parents: 47
diff changeset
28 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
29 # file I/O
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
30 OBJS+= avio.o aviobuf.o file.o
20
3d52de18ecc3 added still image support
bellard
parents: 16
diff changeset
31 OBJS+= framehook.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
32
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 ifeq ($(BUILD_STRPTIME),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34 OBJS+= strptime.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
35 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
36
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
37 ifeq ($(CONFIG_VIDEO4LINUX),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
38 OBJS+= grab.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
39 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
40
27
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
41 ifeq ($(CONFIG_DV1394),yes)
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
42 OBJS+= dv1394.o
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
43 endif
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
44
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
45 ifeq ($(CONFIG_AUDIO_OSS),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
46 OBJS+= audio.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
47 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
48
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
49 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
50 PPOBJS+= beosaudio.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
51 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
52
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
53 ifeq ($(CONFIG_NETWORK),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
54 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
55 # BeOS and Darwin network stuff
1
464f4e8aa417 More changes to make things compile on more platforms
philipjsg
parents: 0
diff changeset
56 ifeq ($(NEED_INET_ATON),yes)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
57 OBJS+= barpainet.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
58 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
60
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
61 ifeq ($(CONFIG_VORBIS),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
62 OBJS+= ogg.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
63 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
64
22
65433f1b2549 os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 20
diff changeset
65 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
66 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
67 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
68 endif
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
69
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
70 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
23
f6aae828c320 AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents: 22
diff changeset
71
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
72 all: $(LIB) $(SLIB)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
73
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
74 $(LIB): $(OBJS) $(PPOBJS)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
75 rm -f $@
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
76 $(AR) rc $@ $(OBJS) $(PPOBJS)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
77 $(RANLIB) $@
05318cf2e886 renamed libav to libavformat
bellard
parents:
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 $(SLIB): $(OBJS)
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
80 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
81
43
a23fb606308a added basic png handling - do not remake dependencies automatically
bellard
parents: 40
diff changeset
82 depend: $(SRCS)
26
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
83 $(CC) -MM $(CFLAGS) $^ 1>.depend
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
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 install: all
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
86 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
87 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
88 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
89 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
90 ldconfig || true
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
91 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
92 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
93 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
94 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
95 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
96 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
97 endif
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
98
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
99 installlib: all
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
100 install -m 644 $(LIB) $(prefix)/lib
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
101 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
102 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
103 $(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
104 $(SRC_PATH)/libavformat/rtspcodes.h \
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
105 $(prefix)/include/ffmpeg
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
106
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
107 %.o: %.c
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
108 $(CC) $(CFLAGS) -c -o $@ $<
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
109
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
110 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
111 %.o: %.cpp
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
112 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
113
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
114 clean:
26
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
115 rm -f *.o *.d .depend *~ *.a $(LIB)
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
116
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
117 #
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
118 # include dependency files if they exist
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
119 #
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
120 ifneq ($(wildcard .depend),)
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
121 include .depend
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
122 endif