Use and display the correct compilers
authorCory Fields <foss@atlastechnologiesinc.com>
Thu, 28 Jul 2011 06:24:14 +0000 (02:24 -0400)
committerCory Fields <foss@atlastechnologiesinc.com>
Thu, 28 Jul 2011 06:27:35 +0000 (02:27 -0400)
Makefile.include.in

index 45f140e..787c8fa 100644 (file)
@@ -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