diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-02-01 20:57:37 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-02-01 20:57:37 +0000 |
commit | 811b32ed69b938cbaa2fd01db5794512c23ba3ff (patch) | |
tree | 3333c02d139e12f85ab9da835bcc738bf287e3a7 /Makefile | |
parent | 91d742b7460ba90ad53696b2767b5250da8413dc (diff) | |
download | ffmpeg-811b32ed69b938cbaa2fd01db5794512c23ba3ff.tar.gz |
dependencies are only build with make depend
Originally committed as revision 1531 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -61,7 +61,7 @@ lib: $(MAKE) -C libavcodec all $(MAKE) -C libavformat all -ffmpeg_g$(EXE): .depend ffmpeg.o $(DEP_LIBS) +ffmpeg_g$(EXE): ffmpeg.o $(DEP_LIBS) $(CC) $(LDFLAGS) -o $@ ffmpeg.o -L./libavcodec -L./libavformat \ -lavformat -lavcodec $(EXTRALIBS) @@ -102,6 +102,11 @@ installlib: dep: depend depend: .depend + make -C libavcodec depend + make -C libavformat depend +ifeq ($(BUILD_VHOOK),yes) + make -C vhook depend +endif .depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend |