annotate Makefile @ 830:27ca9c7cabc7 libavformat

libavutil: Utility code from libavcodec moved to a separate library.
author al
date Mon, 01 Aug 2005 20:07:05 +0000
parents b1d7ee1c792d
children f02966f9bc62
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
251
300c94a708f7 remove unused AMREXTRALIBS
bellard
parents: 248
diff changeset
3 # (c) 2000-2003 Fabrice Bellard
0
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
830
27ca9c7cabc7 libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 818
diff changeset
9 CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 # mux and demuxes
497
d95e74ef39e0 image2 / image API cleanup phase-1
michael
parents: 450
diff changeset
15 OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \
818
b1d7ee1c792d Yamaha SMAF file format support patch by (Vidar Madsen: vidarino, gmail com)
michael
parents: 813
diff changeset
16 avienc.o avidec.o wav.o mmf.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 \
338
6f50cb0ead51 initial commit for Sierra VMD file demuxer
melanson
parents: 315
diff changeset
18 nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
726
17178af951b4 Ogg demuxer ported from tcvp by Luca Barbato <lu_zero at gentoo dot org>,
mru
parents: 707
diff changeset
19 sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o \
756
677bad57fca2 flac in ogg support
mru
parents: 755
diff changeset
20 ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
21 AMROBJS=
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
22 ifeq ($(AMR_NB),yes)
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
23 AMROBJS= amr.o
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
24 endif
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
25 ifeq ($(AMR_NB_FIXED),yes)
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
26 AMROBJS= amr.o
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
27 endif
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
28 ifeq ($(AMR_WB),yes)
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
29 AMROBJS= amr.o
146
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
30 endif
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
31 OBJS+= $(AMROBJS)
146
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
32
20
3d52de18ecc3 added still image support
bellard
parents: 16
diff changeset
33 # image formats
382
37a29b5200d8 added SGI image format, encoding and decoding, courtesy of Todd Kirby
melanson
parents: 380
diff changeset
34 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
35 # file I/O
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
36 OBJS+= avio.o aviobuf.o file.o
20
3d52de18ecc3 added still image support
bellard
parents: 16
diff changeset
37 OBJS+= framehook.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
38
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
39 ifeq ($(CONFIG_VIDEO4LINUX),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
40 OBJS+= grab.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
41 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
42
795
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
43 ifeq ($(CONFIG_BKTR),yes)
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
44 OBJS+= grab_bktr.o
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
45 endif
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
46
27
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
47 ifeq ($(CONFIG_DV1394),yes)
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
48 OBJS+= dv1394.o
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
49 endif
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
50
571
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
51 ifeq ($(CONFIG_DC1394),yes)
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
52 OBJS+= dc1394.o
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
53 endif
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
54
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
55 ifeq ($(CONFIG_AUDIO_OSS),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
56 OBJS+= audio.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
57 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
58
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59 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
60 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
61 EXTRALIBS+=-lbe -lmedia
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
62 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
63
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
64 ifeq ($(CONFIG_NETWORK),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
65 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
66 # BeOS and Darwin network stuff
1
464f4e8aa417 More changes to make things compile on more platforms
philipjsg
parents: 0
diff changeset
67 ifeq ($(NEED_INET_ATON),yes)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
68 OBJS+= barpainet.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
69 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
70 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
71
682
decfffe703bc 01-makefile_fix_updated.patch
michael
parents: 678
diff changeset
72 ifeq ($(CONFIG_LIBOGG),yes)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
73 OBJS+= ogg.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
74 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
75
450
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
76 ifeq ($(TARGET_ARCH_SPARC64),yes)
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
77 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
78 endif
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
79
22
65433f1b2549 os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 20
diff changeset
80 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
81 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
82 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
694
50e07cfe1e4f fix lib order and remove nonsense avcodec double linking
michael
parents: 682
diff changeset
83
752
484211f46feb support BUILDSUF patch by <charles dot yates at pandora dot be>
mmu_man
parents: 726
diff changeset
84 AVCLIBS+=-lavcodec$(BUILDSUF) -L../libavcodec
694
50e07cfe1e4f fix lib order and remove nonsense avcodec double linking
michael
parents: 682
diff changeset
85 ifeq ($(CONFIG_MP3LAME),yes)
50e07cfe1e4f fix lib order and remove nonsense avcodec double linking
michael
parents: 682
diff changeset
86 AVCLIBS+=-lmp3lame
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
87 endif
594
89a09ede50ad First implementation of nsv demuxer.
mmu_man
parents: 571
diff changeset
88 endif
89a09ede50ad First implementation of nsv demuxer.
mmu_man
parents: 571
diff changeset
89
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
90 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
23
f6aae828c320 AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents: 22
diff changeset
91
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
92 all: $(LIB) $(SLIB)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
93
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
94 $(LIB): $(OBJS) $(PPOBJS)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 rm -f $@
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
96 $(AR) rc $@ $(OBJS) $(PPOBJS)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
97 $(RANLIB) $@
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
98
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
99 $(SLIB): $(OBJS)
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
100 ifeq ($(CONFIG_WIN32),yes)
702
23f12cd0dc53 dont link with libavcodec twice on win32
michael
parents: 694
diff changeset
101 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
212
84b7fd1abf2c MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents: 211
diff changeset
102 -lib /machine:i386 /def:$(@:.dll=.def)
84b7fd1abf2c MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents: 211
diff changeset
103 else
813
6d6973a9fd92 compiling using nonstd include/library locations / add LDFLAGS to a few places patch by (Niki W. Waibel - nikiwaibel)
michael
parents: 799
diff changeset
104 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
212
84b7fd1abf2c MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents: 211
diff changeset
105 endif
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
106
43
a23fb606308a added basic png handling - do not remake dependencies automatically
bellard
parents: 40
diff changeset
107 depend: $(SRCS)
26
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
108 $(CC) -MM $(CFLAGS) $^ 1>.depend
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
109
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
110 ifeq ($(BUILD_SHARED),yes)
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
111 install: all install-headers
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
112 ifeq ($(CONFIG_WIN32),yes)
538
d2cc9c6f5d98 Help debugging by keeping symbols ans line numbers patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents: 533
diff changeset
113 install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
114 else
707
cc612862d461 add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 702
diff changeset
115 install -d $(libdir)
cc612862d461 add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 702
diff changeset
116 install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavformat-$(VERSION).so
cc612862d461 add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 702
diff changeset
117 ln -sf libavformat-$(VERSION).so $(libdir)/libavformat.so
773
a5095f5cf38a ldconfig as config.mak variable patch by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 765
diff changeset
118 $(LDCONFIG) || true
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
119 endif
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
120 else
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
121 install:
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
122 endif
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
123
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
124 installlib: all install-headers
707
cc612862d461 add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 702
diff changeset
125 install -m 644 $(LIB) "$(libdir)"
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
126
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
127 install-headers:
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
128 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
129 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
130 $(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
131 $(SRC_PATH)/libavformat/rtspcodes.h \
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
132 "$(prefix)/include/ffmpeg"
765
769c2a9062c1 install libav(codec|format).pc/libpostproc.pc for pkg-config (original patch from <j at v2v.cc>)
aurel
parents: 756
diff changeset
133 install -d $(libdir)/pkgconfig
769c2a9062c1 install libav(codec|format).pc/libpostproc.pc for pkg-config (original patch from <j at v2v.cc>)
aurel
parents: 756
diff changeset
134 install -m 644 ../libavformat.pc $(libdir)/pkgconfig
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
135
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
136 %.o: %.c
799
c69cd990c32f x86_64 + PIC fix by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 795
diff changeset
137 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
138
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
139 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
140 %.o: %.cpp
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
141 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
142
440
404fe714eea1 distclean by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents: 382
diff changeset
143 distclean clean:
522
c6043f70304f removing the .so file when make clean is run patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 497
diff changeset
144 rm -f *.o *.d .depend *~ *.a *.so $(LIB)
26
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
145
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
146 #
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
147 # include dependency files if they exist
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
148 #
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
149 ifneq ($(wildcard .depend),)
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
150 include .depend
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
151 endif