Skip to content

Commit

Permalink
Use and display the correct compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
theuni committed Jul 28, 2011
1 parent b4157b3 commit 05e6b24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.include.in
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 05e6b24

Please sign in to comment.