diff options
author | Måns Rullgård <mans@mansr.com> | 2009-07-22 22:30:20 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-07-22 22:30:20 +0000 |
commit | adcb2190814abe0ea75fb42ae975971d908eb0a2 (patch) | |
tree | e543058b780aa6d6ad5f17eb6bc8f967e97644c2 /common.mak | |
parent | 99e5a9d1ea2a61ac9429427431e5b9c2fefb76a5 (diff) | |
download | ffmpeg-adcb2190814abe0ea75fb42ae975971d908eb0a2.tar.gz |
Move output redirection of deps generation from make rule to DEPEND_CMD
Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mak b/common.mak index 9cc735786f..5d5d3137a8 100644 --- a/common.mak +++ b/common.mak @@ -30,13 +30,13 @@ CPPFLAGS := -DHAVE_AV_CONFIG_H -I$(BUILD_ROOT_REL) -I$(SRC_PATH) $(CPPFLAGS) $(CC) $(CPPFLAGS) $(CFLAGS) $(LIBOBJFLAGS) -Wno-unused -c -o $@ -x c $< %.d: %.c - $(DEPEND_CMD) > $@ + $(DEPEND_CMD) %.d: %.S - $(DEPEND_CMD) > $@ + $(DEPEND_CMD) %.d: %.cpp - $(DEPEND_CMD) > $@ + $(DEPEND_CMD) %.o: %.d |