aboutsummaryrefslogtreecommitdiff
path: root/Makefile.include.in
diff options
context:
space:
mode:
authorCory Fields <foss@atlastechnologiesinc.com>2011-07-28 02:24:14 -0400
committerCory Fields <foss@atlastechnologiesinc.com>2011-07-28 02:27:35 -0400
commit05e6b240512cb4565edb0f8981bffcd781a54fe9 (patch)
treea5a4a92ed8d1e3c998916439011ab059856ed4bf /Makefile.include.in
parentb4157b3f38fe070cf4fbaff02f0e2a3e3284a948 (diff)
Use and display the correct compilers
Diffstat (limited to 'Makefile.include.in')
-rw-r--r--Makefile.include.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.include.in b/Makefile.include.in
index 45f140ea0a..787c8fa28a 100644
--- a/Makefile.include.in
+++ b/Makefile.include.in
@@ -88,7 +88,7 @@ GEN_DEPS=\
%.o: %.cc
@rm -f $@
- $(SILENT_CC) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.c
@@ -98,7 +98,7 @@ GEN_DEPS=\
%.o: %.C
@rm -f $@
- $(SILENT_CC) $(CC) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.S