diff options
author | Måns Rullgård <mans@mansr.com> | 2006-09-12 23:13:22 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-09-12 23:13:22 +0000 |
commit | 496cfa3c9ec59c953dadca46e684f02e825d8ffe (patch) | |
tree | 493713dfa85fad04983c927cd0238b7ef349966f /Makefile | |
parent | 1dac8fea056a907a965c60199a13ba49dc8bdc3e (diff) | |
download | ffmpeg-496cfa3c9ec59c953dadca46e684f02e825d8ffe.tar.gz |
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-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 $@ $< |