summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-12 16:37:32 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-12 16:37:32 +0000
commit0032cac2c9baa43a102cc339bfbd79bc209f9998 (patch)
tree1efe4cf739dfa960c48bbb99444fa549823b2956
parent38ca53dae9d9398dd050edfb30a5e590e7a4adf4 (diff)
fix make dep with some gcc versions
Originally committed as revision 6988 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6c01a824f0..344cfbc42d 100644
--- a/Makefile
+++ b/Makefile
@@ -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