aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-09-12 23:13:22 +0000
committerMåns Rullgård <mans@mansr.com>2006-09-12 23:13:22 +0000
commit496cfa3c9ec59c953dadca46e684f02e825d8ffe (patch)
tree493713dfa85fad04983c927cd0238b7ef349966f /Makefile
parent1dac8fea056a907a965c60199a13ba49dc8bdc3e (diff)
downloadandroid_external_ffmpeg-496cfa3c9ec59c953dadca46e684f02e825d8ffe.tar.gz
android_external_ffmpeg-496cfa3c9ec59c953dadca46e684f02e825d8ffe.tar.bz2
android_external_ffmpeg-496cfa3c9ec59c953dadca46e684f02e825d8ffe.zip
ffmpeg, ffplay, ffserver need version.h
Originally committed as revision 6242 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b9a257ed8..bea7d8fe49 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,7 @@ LDFLAGS+=-L./libswscale
EXTRALIBS+=-lswscale$(BUILDSUF)
endif
-all: version.h lib $(PROGS_G) $(PROGS) $(PROGTEST) $(VHOOK) $(QTFASTSTART) $(DOC)
+all: lib $(PROGS_G) $(PROGS) $(PROGTEST) $(VHOOK) $(QTFASTSTART) $(DOC)
lib:
$(MAKE) -C libavutil all
@@ -108,6 +108,8 @@ cws2fws$(EXESUF): cws2fws.c
ffplay.o: ffplay.c
$(CC) $(CFLAGS) $(SDL_CFLAGS) -c -o $@ $<
+ffmpeg.o ffplay.o ffserver.o: version.h
+
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<