diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-12 16:37:32 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-12 16:37:32 +0000 |
commit | 0032cac2c9baa43a102cc339bfbd79bc209f9998 (patch) | |
tree | 1efe4cf739dfa960c48bbb99444fa549823b2956 /Makefile | |
parent | 38ca53dae9d9398dd050edfb30a5e590e7a4adf4 (diff) | |
download | ffmpeg-0032cac2c9baa43a102cc339bfbd79bc209f9998.tar.gz |
fix make dep with some gcc versions
Originally committed as revision 6988 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -208,7 +208,7 @@ ifeq ($(CONFIG_VHOOK),yes) endif .depend: $(SRCS) version.h - $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $^ 1>.depend + $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(filter-out %.h,$^) 1>.depend .libs: lib @test -f .libs || touch .libs |