diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-10 02:56:52 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-10 02:56:52 +0000 |
commit | 93bff1de770e95c79bcf2ec794d05ef6b64ec7af (patch) | |
tree | 50f651db2df1561f188cd7f588439008bd696fac /libavcodec/Makefile | |
parent | 86be2bc36f24ffc92d5474fca00465494ec33cef (diff) | |
download | ffmpeg-93bff1de770e95c79bcf2ec794d05ef6b64ec7af.tar.gz |
Replace $(G) with more generic $(M) in silent make rules
Originally committed as revision 22419 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 756b10abac..6bd26cc495 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -736,10 +736,10 @@ include $(SUBDIR)../subdir.mak $(SUBDIR)dct-test$(EXESUF): $(SUBDIR)dctref.o $(SUBDIR)cos_tables.c: $(SUBDIR)costablegen$(HOSTEXESUF) - $(G)./$< > $@ + $(M)./$< > $@ $(SUBDIR)sin_tables.c: $(SUBDIR)costablegen$(HOSTEXESUF) - $(G)./$< sin > $@ + $(M)./$< sin > $@ ifdef CONFIG_MPEGAUDIO_HP $(SUBDIR)mpegaudio_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DFRAC_BITS=23 @@ -753,7 +753,7 @@ $(SUBDIR)%_tablegen$(HOSTEXESUF): $(SUBDIR)%_tablegen.c $(SUBDIR)tableprint.c $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ $(HOSTLIBS) $(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF) - $(G)./$< > $@ + $(M)./$< > $@ ifdef CONFIG_HARDCODED_TABLES $(SUBDIR)mdct.o: $(SUBDIR)mdct_tables.h |