diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-12 09:42:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-12 09:42:36 +0000 |
commit | f63b6dc0ff386d041cf807d61f73250f968cf2d2 (patch) | |
tree | 0bcf4e4551768da3d7e33e74e4859a02264174ff | |
parent | 8df4da4eb37cb4e3589c88b866d6fcac469b5e8d (diff) | |
download | ffmpeg-f63b6dc0ff386d041cf807d61f73250f968cf2d2.tar.gz |
Do not calculate dependencies for header files in the .vhookdepend target.
Originally committed as revision 12422 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -227,7 +227,7 @@ depend dep: .depend .vhookdep # gcc stupidly only outputs the basename of targets with -MM .vhookdep: $(ALLHOOKS_SRCS) version.h - $(CC) $(VHOOKCFLAGS) -MM $^ | sed 's,^\([a-z]\),vhook/\1,' > $@ + $(CC) -MM $(VHOOKCFLAGS) $(filter-out %.h,$^) | sed 's,^\([a-z]\),vhook/\1,' > $@ $(DEP_LIBS): lib |