Mercurial > libavformat.hg
annotate Makefile @ 905:dbc0145bbf11 libavformat
Add --disable-protocols option to configure to disable I/O protocol from
libavformat. Also fix build with --disable-muxers and --disable-ffserver.
patch by Gildas Bazin < gbazin **@** altern **.** org >
| author | diego |
|---|---|
| date | Sat, 21 Jan 2006 18:36:32 +0000 |
| parents | 04509c9a1b7a |
| children | f1104ac8de95 |
| 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 |
|
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 | 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 |
|
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
14 # demuxers |
| 497 | 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 \ |
|
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
17 yuv4mpeg.o 4xm.o flvdec.o psxstr.o idroq.o ipmovie.o \ |
| 338 | 18 nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \ |
|
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
19 sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o \ |
| 847 | 20 ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o daud.o |
|
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
21 |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
22 # muxers |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
23 ifeq ($(CONFIG_MUXERS),yes) |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
24 OBJS+= flvenc.o movenc.o asf-enc.o |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
25 endif |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
26 |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
27 |
|
629
996fe7d78701
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
594
diff
changeset
|
28 AMROBJS= |
|
278
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
29 ifeq ($(AMR_NB),yes) |
|
629
996fe7d78701
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
594
diff
changeset
|
30 AMROBJS= amr.o |
|
278
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
31 endif |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
32 ifeq ($(AMR_NB_FIXED),yes) |
|
629
996fe7d78701
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
594
diff
changeset
|
33 AMROBJS= amr.o |
|
278
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
34 endif |
|
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
35 ifeq ($(AMR_WB),yes) |
|
629
996fe7d78701
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
594
diff
changeset
|
36 AMROBJS= amr.o |
| 146 | 37 endif |
|
629
996fe7d78701
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
594
diff
changeset
|
38 OBJS+= $(AMROBJS) |
| 146 | 39 |
| 20 | 40 # image formats |
|
382
37a29b5200d8
added SGI image format, encoding and decoding, courtesy of Todd Kirby
melanson
parents:
380
diff
changeset
|
41 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o |
| 885 | 42 OBJS+= framehook.o |
| 0 | 43 |
| 44 ifeq ($(CONFIG_VIDEO4LINUX),yes) | |
| 45 OBJS+= grab.o | |
| 46 endif | |
| 47 | |
|
795
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
48 ifeq ($(CONFIG_BKTR),yes) |
|
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
49 OBJS+= grab_bktr.o |
|
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
50 endif |
|
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
51 |
|
27
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
52 ifeq ($(CONFIG_DV1394),yes) |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
53 OBJS+= dv1394.o |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
54 endif |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
55 |
| 571 | 56 ifeq ($(CONFIG_DC1394),yes) |
| 57 OBJS+= dc1394.o | |
| 58 endif | |
| 59 | |
| 0 | 60 ifeq ($(CONFIG_AUDIO_OSS),yes) |
| 885 | 61 OBJS+= audio.o |
| 0 | 62 endif |
| 63 | |
| 835 | 64 EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF) |
| 832 | 65 |
| 0 | 66 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
|
67 PPOBJS+= beosaudio.o |
| 0 | 68 endif |
| 69 | |
|
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
70 # protocols I/O |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
71 OBJS+= avio.o aviobuf.o |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
72 |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
73 ifeq ($(CONFIG_PROTOCOLS),yes) |
|
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
74 OBJS+= file.o |
| 0 | 75 ifeq ($(CONFIG_NETWORK),yes) |
| 76 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
|
77 # BeOS and Darwin network stuff |
|
1
464f4e8aa417
More changes to make things compile on more platforms
philipjsg
parents:
0
diff
changeset
|
78 ifeq ($(NEED_INET_ATON),yes) |
| 0 | 79 OBJS+= barpainet.o |
| 80 endif | |
| 81 endif | |
|
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
82 endif |
| 0 | 83 |
| 682 | 84 ifeq ($(CONFIG_LIBOGG),yes) |
| 0 | 85 OBJS+= ogg.o |
| 86 endif | |
| 87 | |
|
450
85439137fc30
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
440
diff
changeset
|
88 ifeq ($(TARGET_ARCH_SPARC64),yes) |
|
85439137fc30
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
440
diff
changeset
|
89 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc |
|
85439137fc30
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
440
diff
changeset
|
90 endif |
|
85439137fc30
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
440
diff
changeset
|
91 |
|
898
51a83f9981f2
Move library name generation to configure, simplifies build system a bit more.
diego
parents:
897
diff
changeset
|
92 NAME=avformat |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
93 ifeq ($(BUILD_SHARED),yes) |
|
897
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
94 LIBVERSION=$(LAVFVERSION) |
|
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
95 LIBMAJOR=$(LAVFMAJOR) |
| 859 | 96 AVCLIBS+=-lavcodec$(BUILDSUF) -L../libavcodec -lavutil$(BUILDSUF) -L../libavutil |
| 594 | 97 endif |
| 98 | |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
99 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp) |
|
23
f6aae828c320
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
22
diff
changeset
|
100 |
| 859 | 101 all: $(LIB) $(SLIBNAME) |
| 0 | 102 |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
103 $(LIB): $(OBJS) $(PPOBJS) |
| 0 | 104 rm -f $@ |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
105 $(AR) rc $@ $(OBJS) $(PPOBJS) |
| 0 | 106 $(RANLIB) $@ |
| 107 | |
| 859 | 108 $(SLIBNAME): $(OBJS) |
| 248 | 109 ifeq ($(CONFIG_WIN32),yes) |
| 702 | 110 $(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
|
111 -lib /machine:i386 /def:$(@:.dll=.def) |
|
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
112 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
|
113 $(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
|
114 endif |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
115 |
|
43
a23fb606308a
added basic png handling - do not remake dependencies automatically
bellard
parents:
40
diff
changeset
|
116 depend: $(SRCS) |
| 26 | 117 $(CC) -MM $(CFLAGS) $^ 1>.depend |
| 118 | |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
119 ifeq ($(BUILD_SHARED),yes) |
| 248 | 120 install: all install-headers |
| 121 ifeq ($(CONFIG_WIN32),yes) | |
| 859 | 122 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)" |
| 248 | 123 else |
|
707
cc612862d461
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
702
diff
changeset
|
124 install -d $(libdir) |
|
897
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
125 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \ |
|
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
126 $(libdir)/$(SLIBNAME_WITH_VERSION) |
|
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
127 ln -sf $(SLIBNAME_WITH_VERSION) \ |
|
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
128 $(libdir)/$(SLIBNAME_WITH_MAJOR) |
|
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
129 ln -sf $(SLIBNAME_WITH_VERSION) \ |
|
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
130 $(libdir)/$(SLIBNAME) |
|
773
a5095f5cf38a
ldconfig as config.mak variable patch by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
765
diff
changeset
|
131 $(LDCONFIG) || true |
| 248 | 132 endif |
| 133 else | |
| 134 install: | |
|
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
135 endif |
|
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
136 |
| 248 | 137 installlib: all install-headers |
|
707
cc612862d461
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
702
diff
changeset
|
138 install -m 644 $(LIB) "$(libdir)" |
| 248 | 139 |
| 140 install-headers: | |
| 141 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
|
142 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
|
143 $(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
|
144 $(SRC_PATH)/libavformat/rtspcodes.h \ |
| 248 | 145 "$(prefix)/include/ffmpeg" |
|
871
3637f3d43e55
Put double-quotes around the install path in the "install-headers" section
diego
parents:
860
diff
changeset
|
146 install -d "$(libdir)/pkgconfig" |
|
3637f3d43e55
Put double-quotes around the install path in the "install-headers" section
diego
parents:
860
diff
changeset
|
147 install -m 644 ../libavformat.pc "$(libdir)/pkgconfig" |
| 0 | 148 |
| 149 %.o: %.c | |
| 885 | 150 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
| 0 | 151 |
| 152 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings | |
| 153 %.o: %.cpp | |
| 885 | 154 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< |
| 0 | 155 |
|
900
04509c9a1b7a
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
899
diff
changeset
|
156 clean: |
|
04509c9a1b7a
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
899
diff
changeset
|
157 rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll |
|
04509c9a1b7a
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
899
diff
changeset
|
158 |
|
04509c9a1b7a
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
899
diff
changeset
|
159 distclean: clean |
|
04509c9a1b7a
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
899
diff
changeset
|
160 rm -f Makefile.bak .depend |
| 26 | 161 |
| 162 # | |
| 163 # include dependency files if they exist | |
| 164 # | |
| 165 ifneq ($(wildcard .depend),) | |
| 166 include .depend | |
| 167 endif |
