From 0032cac2c9baa43a102cc339bfbd79bc209f9998 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 12 Nov 2006 16:37:32 +0000 Subject: fix make dep with some gcc versions Originally committed as revision 6988 to svn://svn.ffmpeg.org/ffmpeg/trunk --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3