annotate Makefile @ 950:3a64595e57be libavformat

complete American Laser Games MM playback system, courtesy of Peter Ross (suxen_drol at hotmail dot com)
author melanson
date Sun, 12 Feb 2006 06:49:40 +0000
parents 1e766711e6c8
children 99cb6d06856b
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
918
e50e8bfb90ed Simplify LDFLAGS handling for MinGW.
diego
parents: 917
diff changeset
11 #FIXME: This should be in configure/config.mak
e50e8bfb90ed Simplify LDFLAGS handling for MinGW.
diego
parents: 917
diff changeset
12 ifeq ($(CONFIG_WIN32),yes)
919
7ac21a82ac29 On MinGW it is not possible to build shared and static libraries at once.
diego
parents: 918
diff changeset
13 LDFLAGS=-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a)
918
e50e8bfb90ed Simplify LDFLAGS handling for MinGW.
diego
parents: 917
diff changeset
14 endif
e50e8bfb90ed Simplify LDFLAGS handling for MinGW.
diego
parents: 917
diff changeset
15
230
9f4f4ca9f7b5 simpler strptime - added os_support.[ch] - moved localtime_r to os_support.c
bellard
parents: 225
diff changeset
16 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
17 PPOBJS=
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
18
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
19 # demuxers
497
d95e74ef39e0 image2 / image API cleanup phase-1
michael
parents: 450
diff changeset
20 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
21 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
22 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
23 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
24 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
25 ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o daud.o aiff.o \
950
3a64595e57be complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents: 948
diff changeset
26 voc.o tta.o mm.o
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
27
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
28 # muxers
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
29 ifeq ($(CONFIG_MUXERS),yes)
939
61959072be81 generate adts frame headers if required
mru
parents: 937
diff changeset
30 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
31 endif
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
32
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
33
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
34 AMROBJS=
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
35 ifeq ($(AMR_NB),yes)
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
36 AMROBJS= amr.o
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
37 endif
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
38 ifeq ($(AMR_NB_FIXED),yes)
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
39 AMROBJS= amr.o
278
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
40 endif
1344cea6e2a8 make it compatible with older make (debian stable - make 3.79.1)
alex
parents: 274
diff changeset
41 ifeq ($(AMR_WB),yes)
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
42 AMROBJS= amr.o
146
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
43 endif
629
996fe7d78701 Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 594
diff changeset
44 OBJS+= $(AMROBJS)
146
b9703b3c10b6 * 3gp patch by Joca
kabi
parents: 137
diff changeset
45
20
3d52de18ecc3 added still image support
bellard
parents: 16
diff changeset
46 # image formats
382
37a29b5200d8 added SGI image format, encoding and decoding, courtesy of Todd Kirby
melanson
parents: 380
diff changeset
47 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
48 OBJS+= framehook.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
49
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
50 ifeq ($(CONFIG_VIDEO4LINUX),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
51 OBJS+= grab.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
52 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
53
921
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
54 ifeq ($(CONFIG_VIDEO4LINUX2),yes)
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
55 OBJS+= v4l2.o
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
56 endif
547675092e98 video4linux2 input support
diego
parents: 919
diff changeset
57
795
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
58 ifeq ($(CONFIG_BKTR),yes)
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
59 OBJS+= grab_bktr.o
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
60 endif
391669d461d4 *BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 773
diff changeset
61
27
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
62 ifeq ($(CONFIG_DV1394),yes)
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
63 OBJS+= dv1394.o
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
64 endif
fcdea3df94fe dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents: 26
diff changeset
65
571
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
66 ifeq ($(CONFIG_DC1394),yes)
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
67 OBJS+= dc1394.o
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
68 endif
4a755492b90b * Introducing IIDC1394 grabbing interface.
romansh
parents: 565
diff changeset
69
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
70 ifeq ($(CONFIG_AUDIO_OSS),yes)
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 880
diff changeset
71 OBJS+= audio.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
72 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
73
835
14ba3ad599d8 fix building in separate directory
mru
parents: 832
diff changeset
74 EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF)
832
f02966f9bc62 Fix building shared version of lavf on some systems.
al
parents: 830
diff changeset
75
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
76 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
77 PPOBJS+= beosaudio.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
78 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
79
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
80 # protocols I/O
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
81 OBJS+= avio.o aviobuf.o
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
82
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
83 ifeq ($(CONFIG_PROTOCOLS),yes)
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
84 OBJS+= file.o
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
85 ifeq ($(CONFIG_NETWORK),yes)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
86 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
87 # BeOS and Darwin network stuff
1
464f4e8aa417 More changes to make things compile on more platforms
philipjsg
parents: 0
diff changeset
88 ifeq ($(NEED_INET_ATON),yes)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
89 OBJS+= barpainet.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
90 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
91 endif
905
dbc0145bbf11 Add --disable-protocols option to configure to disable I/O protocol from
diego
parents: 900
diff changeset
92 endif
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
93
682
decfffe703bc 01-makefile_fix_updated.patch
michael
parents: 678
diff changeset
94 ifeq ($(CONFIG_LIBOGG),yes)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 OBJS+= ogg.o
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
96 endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
97
450
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
98 ifeq ($(TARGET_ARCH_SPARC64),yes)
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
99 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
100 endif
85439137fc30 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 440
diff changeset
101
898
51a83f9981f2 Move library name generation to configure, simplifies build system a bit more.
diego
parents: 897
diff changeset
102 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
103 ifeq ($(BUILD_SHARED),yes)
897
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
104 LIBVERSION=$(LAVFVERSION)
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
105 LIBMAJOR=$(LAVFMAJOR)
859
889aa3ced0f3 support for building dynamic libraries on Mac OS X
diego
parents: 847
diff changeset
106 AVCLIBS+=-lavcodec$(BUILDSUF) -L../libavcodec -lavutil$(BUILDSUF) -L../libavutil
594
89a09ede50ad First implementation of nsv demuxer.
mmu_man
parents: 571
diff changeset
107 endif
89a09ede50ad First implementation of nsv demuxer.
mmu_man
parents: 571
diff changeset
108
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
109 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
23
f6aae828c320 AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents: 22
diff changeset
110
859
889aa3ced0f3 support for building dynamic libraries on Mac OS X
diego
parents: 847
diff changeset
111 all: $(LIB) $(SLIBNAME)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
112
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
113 $(LIB): $(OBJS) $(PPOBJS)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
114 rm -f $@
57
821a7facb3e4 Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents: 55
diff changeset
115 $(AR) rc $@ $(OBJS) $(PPOBJS)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
116 $(RANLIB) $@
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
117
859
889aa3ced0f3 support for building dynamic libraries on Mac OS X
diego
parents: 847
diff changeset
118 $(SLIBNAME): $(OBJS)
918
e50e8bfb90ed Simplify LDFLAGS handling for MinGW.
diego
parents: 917
diff changeset
119 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
120 ifeq ($(CONFIG_WIN32),yes)
212
84b7fd1abf2c MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents: 211
diff changeset
121 -lib /machine:i386 /def:$(@:.dll=.def)
84b7fd1abf2c MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents: 211
diff changeset
122 endif
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
123
43
a23fb606308a added basic png handling - do not remake dependencies automatically
bellard
parents: 40
diff changeset
124 depend: $(SRCS)
26
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
125 $(CC) -MM $(CFLAGS) $^ 1>.depend
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
126
944
7082e2e7a3cd Separate library install into static and shared installation.
diego
parents: 942
diff changeset
127
7082e2e7a3cd Separate library install into static and shared installation.
diego
parents: 942
diff changeset
128 install-lib-shared: $(SLIBNAME)
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
129 ifeq ($(CONFIG_WIN32),yes)
859
889aa3ced0f3 support for building dynamic libraries on Mac OS X
diego
parents: 847
diff changeset
130 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
131 else
897
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
132 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
133 $(libdir)/$(SLIBNAME_WITH_VERSION)
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
134 ln -sf $(SLIBNAME_WITH_VERSION) \
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
135 $(libdir)/$(SLIBNAME_WITH_MAJOR)
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
136 ln -sf $(SLIBNAME_WITH_VERSION) \
f957dbf08fcf Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 895
diff changeset
137 $(libdir)/$(SLIBNAME)
167
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
138 endif
e284cddf0509 Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents: 164
diff changeset
139
944
7082e2e7a3cd Separate library install into static and shared installation.
diego
parents: 942
diff changeset
140 install-lib-static: $(LIB)
707
cc612862d461 add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 702
diff changeset
141 install -m 644 $(LIB) "$(libdir)"
248
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
142
bb28d1c1788a correct DLL windows install
bellard
parents: 235
diff changeset
143 install-headers:
946
1214ae47de2b Use the incdir variable.
diego
parents: 945
diff changeset
144 install -m 644 avformat.h avio.h rtp.h rtsp.h rtspcodes.h "$(incdir)"
945
cff8bd30adfb Simplify header installation.
diego
parents: 944
diff changeset
145 install -m 644 $(SRC_PATH)/libavformat.pc "$(libdir)/pkgconfig"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
146
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
147 %.o: %.c
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 880
diff changeset
148 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
149
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
150 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
151 %.o: %.cpp
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 880
diff changeset
152 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
153
900
04509c9a1b7a Make clean/distclean consistent throughout all the Makefiles.
diego
parents: 899
diff changeset
154 clean:
919
7ac21a82ac29 On MinGW it is not possible to build shared and static libraries at once.
diego
parents: 918
diff changeset
155 rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll \
7ac21a82ac29 On MinGW it is not possible to build shared and static libraries at once.
diego
parents: 918
diff changeset
156 *.lib *.def *.dll.a *.exp
900
04509c9a1b7a Make clean/distclean consistent throughout all the Makefiles.
diego
parents: 899
diff changeset
157
04509c9a1b7a Make clean/distclean consistent throughout all the Makefiles.
diego
parents: 899
diff changeset
158 distclean: clean
917
f1104ac8de95 Remove obscure Makefile.bak entry from distclean rules.
diego
parents: 905
diff changeset
159 rm -f .depend
26
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
160
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
161 #
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
162 # include dependency files if they exist
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
163 #
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
164 ifneq ($(wildcard .depend),)
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
165 include .depend
ec4e7f9b4515 dependency handling is consistant with libavcodec
bellard
parents: 23
diff changeset
166 endif