diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-31 18:30:41 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-31 18:30:41 +0000 |
commit | 91beada72a26e9e37308961397fd652f2df5b9c4 (patch) | |
tree | 9cb2cc0a3920dae10da912832b6ae3a285d88064 /Makefile | |
parent | 27303c8abcbbcab435baa6198151b2aac11664c0 (diff) | |
download | ffmpeg-91beada72a26e9e37308961397fd652f2df5b9c4.tar.gz |
Some gcc versions dislike version.h to appear in the list of files to
compile dependencies for.
Originally committed as revision 6144 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ ifeq ($(BUILD_VHOOK),yes) endif .depend: $(SRCS) version.h - $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $^ 1>.depend + $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(SRCS) 1>.depend .libs: lib @test -f .libs || touch .libs |