annotate Makefile @ 1152:c7cf3d1f9bd7 libavformat

simplify and write correct values conforming to specs
author bcoudurier
date Thu, 06 Jul 2006 14:38:50 +0000
parents fdae93c4ebd6
children d18cc9a1fd02
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
1148
fdae93c4ebd6 cosmetics: Break overly long lines.
diego
parents: 1145
diff changeset
7 CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \
fdae93c4ebd6 cosmetics: Break overly long lines.
diego
parents: 1145
diff changeset
8 -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 \
fdae93c4ebd6 cosmetics: Break overly long lines.
diego
parents: 1145
diff changeset
9 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
10
958
99cb6d06856b move common parts of makefiles into common.mak
mru
parents: 950
diff changeset
11 OBJS= utils.o cutils.o os_support.o allformats.o
99cb6d06856b move common parts of makefiles into common.mak
mru
parents: 950
diff changeset
12 CPPOBJS=
918
e50e8bfb90ed Simplify LDFLAGS handling for MinGW.
diego
parents: 917
diff changeset
13
958
99cb6d06856b move common parts of makefiles into common.mak
mru
parents: 950
diff changeset
14 HEADERS = avformat.h avio.h rtp.h rtsp.h rtspcodes.h
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
16 # demuxers
497
d95e74ef39e0 image2 / image API cleanup phase-1
michael
parents: 450
diff changeset
17 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
18 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
19 yuv4mpeg.o 4xm.o flvdec.o psxstr.o idroq.o ipmovie.o \
338
6f50cb0ead51 initial commit for Sierra VMD file demuxer
melanson
parents: 315
diff changeset
20 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
21 sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o \
937
a887adfe9dc5 add a Creative VOC (de)muxer
aurel
parents: 925
diff changeset
22 ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o daud.o aiff.o \
1145
95054d76b7e6 add GXF demuxer
reimar
parents: 1102
diff changeset
23 voc.o tta.o mm.o avs.o smacker.o nuv.o gxf.o oggparseogm.o
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
24
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
25 # muxers
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
26 ifeq ($(CONFIG_MUXERS),yes)
939
61959072be81 generate adts frame headers if required
mru
parents: 937
diff changeset
27 OBJS+= flvenc.o movenc.o asf-enc.o adtsenc.o
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
28 endif
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
29
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
30
1069
21c0614314aa Further simplify AMR build.
diego
parents: 1058
diff changeset
31 ifeq ($(AMR),yes)
21c0614314aa Further simplify AMR build.
diego
parents: 1058
diff changeset
32 OBJS+= amr.o
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
33 endif
146
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
34
20
3d52de18ecc3 added still image support
bellard
parents: 16
diff changeset
35 # image formats
382
37a29b5200d8 added SGI image format, encoding and decoding, courtesy of Todd Kirby
melanson
parents: 380
diff changeset
36 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 880
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
921
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
43 ifeq ($(CONFIG_VIDEO4LINUX2),yes)
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
44 OBJS+= v4l2.o
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
45 endif
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
46
795
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
47 ifeq ($(CONFIG_BKTR),yes)
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
48 OBJS+= grab_bktr.o
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
49 endif
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
50
27
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
51 ifeq ($(CONFIG_DV1394),yes)
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
52 OBJS+= dv1394.o
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
53 endif
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
54
571
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
55 ifeq ($(CONFIG_DC1394),yes)
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
56 OBJS+= dc1394.o
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
57 endif
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
58
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59 ifeq ($(CONFIG_AUDIO_OSS),yes)
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 880
diff changeset
60 OBJS+= audio.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
61 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
62
1148
fdae93c4ebd6 cosmetics: Break overly long lines.
diego
parents: 1145
diff changeset
63 EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) \
fdae93c4ebd6 cosmetics: Break overly long lines.
diego
parents: 1145
diff changeset
64 -lavcodec$(BUILDSUF) -L../libavcodec $(EXTRALIBS)
832
f02966f9bc62 Fix building shared version of lavf on some systems.
al
parents: 830
diff changeset
65
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
66 ifeq ($(CONFIG_AUDIO_BEOS),yes)
958
99cb6d06856b move common parts of makefiles into common.mak
mru
parents: 950
diff changeset
67 CPPOBJS+= beosaudio.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
68 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
75 ifeq ($(CONFIG_NETWORK),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
79 OBJS+= barpainet.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
80 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
81 endif
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
82 endif
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
83
682
decfffe703bc 01-makefile_fix_updated.patch
michael
parents: 678
diff changeset
84 ifeq ($(CONFIG_LIBOGG),yes)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
85 OBJS+= ogg.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
86 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
87
898
51a83f9981f2 Move library name generation to configure, simplifies build system a bit more.
diego
parents: 897
diff changeset
88 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
89 ifeq ($(BUILD_SHARED),yes)
897
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
90 LIBVERSION=$(LAVFVERSION)
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
91 LIBMAJOR=$(LAVFMAJOR)
212
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
958
99cb6d06856b move common parts of makefiles into common.mak
mru
parents: 950
diff changeset
94 include $(SRC_PATH)/common.mak