From cabad2adbc185c27d2df011be198220f79cdc97f Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 31 Oct 2001 19:40:18 +0000 Subject: * dependency for static linking Originally committed as revision 202 to svn://svn.ffmpeg.org/ffmpeg/trunk --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2e257a5..a35c32a 100644 --- a/Makefile +++ b/Makefile @@ -20,8 +20,10 @@ endif ifeq ($(BUILD_SHARED),yes) FFMPEG_LIB=-Llibavcodec -lffmpeg +DEP_FFMPEG_LIB= else FFMPEG_LIB=libavcodec/libavcodec.a +DEP_FFMPEG_LIB=libavcodec/libavcodec.a endif all: lib $(PROG) @@ -30,10 +32,10 @@ lib: $(MAKE) -C libavcodec all $(MAKE) -C libav all -ffmpeg$(EXE): ffmpeg.o libav/libav.a +ffmpeg$(EXE): ffmpeg.o libav/libav.a $(DEP_FFMPEG_LIB) $(CC) $(LDFLAGS) -lm -o $@ $^ $(FFMPEG_LIB) -ffserver$(EXE): ffserver.o libav/libav.a +ffserver$(EXE): ffserver.o libav/libav.a $(DEP_FFMPEG_LIB) $(CC) $(LDFLAGS) -lm -o $@ $^ $(FFMPEG_LIB) ffplay: ffmpeg$(EXE) -- cgit v1.1