Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-12 19:37:32 +0300
committerMåns Rullgård <mans@mansr.com>2006-11-12 19:37:32 +0300
commit0032cac2c9baa43a102cc339bfbd79bc209f9998 (patch)
tree1efe4cf739dfa960c48bbb99444fa549823b2956 /Makefile
parent38ca53dae9d9398dd050edfb30a5e590e7a4adf4 (diff)
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--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