summaryrefslogtreecommitdiff
path: root/tools/make.inc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make.inc')
-rw-r--r--tools/make.inc7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/make.inc b/tools/make.inc
index e2430a2b6b..8d75326bf0 100644
--- a/tools/make.inc
+++ b/tools/make.inc
@@ -3,16 +3,15 @@
3ifndef V 3ifndef V
4SILENT=@ 4SILENT=@
5endif 5endif
6PRINTS=$(info $(1))$(SILENT)
6 7
7$(OBJDIR)/%.o: %.c 8$(OBJDIR)/%.o: %.c
8 $(SILENT)mkdir -p $(dir $@) 9 $(SILENT)mkdir -p $(dir $@)
9 @echo "CC $<" 10 $(call PRINTS,CC $<)$(CC) $(CFLAGS) -c $< -o $@
10 $(SILENT)$(CC) $(CFLAGS) -c $< -o $@
11 11
12$(OBJDIR)/%.o: %.S 12$(OBJDIR)/%.o: %.S
13 $(SILENT)mkdir -p $(dir $@) 13 $(SILENT)mkdir -p $(dir $@)
14 @echo "CC $<" 14 $(call PRINTS,CC $<)$(CC) $(CFLAGS) -c $< -o $@
15 $(SILENT)$(CC) $(CFLAGS) -c $< -o $@
16 15
17# The echo stuff last in the dep update shell magic is to prevent any compiler 16# The echo stuff last in the dep update shell magic is to prevent any compiler
18# errors/warnings to cause an error code to get returned and thus stop the 17# errors/warnings to cause an error code to get returned and thus stop the