diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-11 20:58:32 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-11 20:58:32 +0000 |
commit | 3894bc74dbdfa2618cc3a57266c66b7f92cebcbd (patch) | |
tree | 577f87730e76264767bef6f16abf83196ad50cb0 | |
parent | 1ed1a122a7cc2edcda8425f28f90a23640c557e7 (diff) | |
download | ffmpeg-3894bc74dbdfa2618cc3a57266c66b7f92cebcbd.tar.gz |
fix make dep for out of tree builds
Originally committed as revision 6974 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ ifeq ($(CONFIG_VHOOK),yes) endif .depend: $(SRCS) version.h - $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(SRCS) 1>.depend + $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $^ 1>.depend .libs: lib @test -f .libs || touch .libs |