summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2010-01-02 14:07:31 -0800
committerSteven Noonan <steven@uplinklabs.net>2010-01-02 14:07:31 -0800
commit96237179cdbf6ed2d5a7ce3ea3f717bb400b4635 (patch)
tree7df8d115cb1ce78d81471183febb11ad3cfc86ce /crawl-ref/source/makefile
parent23703df3d449eb80d14f42a213eca4e267416bb8 (diff)
downloadcrawl-ref-96237179cdbf6ed2d5a7ce3ea3f717bb400b4635.tar.gz
crawl-ref-96237179cdbf6ed2d5a7ce3ea3f717bb400b4635.zip
makefile: use QUIET_CC when compiling *.m files
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/makefile')
-rw-r--r--crawl-ref/source/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index 0f9123f037..a023a4286c 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -877,7 +877,7 @@ endif
$(OBJECTS:%.o=%.cc): $(CC_DEP) $(TILEDEFHDRS) $(CONTRIB_LIBS)
%.o: %.m .cflags
- $(QUIET_CXX)$(CC) $(ALL_CFLAGS) -Wp,-MD,$*.d -c $< -o $*.o
+ $(QUIET_CC)$(CC) $(ALL_CFLAGS) -Wp,-MD,$*.d -c $< -o $*.o
%.o: %.cc .cflags
$(QUIET_CXX)$(CXX) $(ALL_CFLAGS) -Wp,-MD,$*.d -c $< -o $*.o