summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/decompressor/Makefile2
-rwxr-xr-xtools/configure6
-rw-r--r--tools/make.inc2
-rw-r--r--tools/makebmp.inc2
4 files changed, 9 insertions, 3 deletions
diff --git a/firmware/decompressor/Makefile b/firmware/decompressor/Makefile
index 17ccf6da77..46d7afe1b0 100644
--- a/firmware/decompressor/Makefile
+++ b/firmware/decompressor/Makefile
@@ -10,7 +10,7 @@
10ifndef V 10ifndef V
11SILENT=@ 11SILENT=@
12endif 12endif
13PRINTS=$(info $(1))$(SILENT) 13PRINTS=$(SILENT)$(call info,$(1))
14 14
15LDS := link.lds 15LDS := link.lds
16LINKFILE = $(OBJDIR)/linkage.lds 16LINKFILE = $(OBJDIR)/linkage.lds
diff --git a/tools/configure b/tools/configure
index 66636b55b4..d773c5aaf6 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1421,6 +1421,12 @@ else
1421VERBOSEOPT=-v 1421VERBOSEOPT=-v
1422endif 1422endif
1423 1423
1424# old 'make' versions don't have the built-in 'info' function
1425info=old\$(warning Consider upgrading to GNU make 3.81+ for optimum build performance.)
1426ifeq (\$(call info),old)
1427export info=echo "\$\$(1)";
1428endif
1429
1424export ROOTDIR=@ROOTDIR@ 1430export ROOTDIR=@ROOTDIR@
1425export FIRMDIR=@FIRMDIR@ 1431export FIRMDIR=@FIRMDIR@
1426export APPSDIR=@APPSDIR@ 1432export APPSDIR=@APPSDIR@
diff --git a/tools/make.inc b/tools/make.inc
index 8d75326bf0..8e125c834e 100644
--- a/tools/make.inc
+++ b/tools/make.inc
@@ -3,7 +3,7 @@
3ifndef V 3ifndef V
4SILENT=@ 4SILENT=@
5endif 5endif
6PRINTS=$(info $(1))$(SILENT) 6PRINTS=$(SILENT)$(call info,$(1))
7 7
8$(OBJDIR)/%.o: %.c 8$(OBJDIR)/%.o: %.c
9 $(SILENT)mkdir -p $(dir $@) 9 $(SILENT)mkdir -p $(dir $@)
diff --git a/tools/makebmp.inc b/tools/makebmp.inc
index 9c8c640203..987a21457f 100644
--- a/tools/makebmp.inc
+++ b/tools/makebmp.inc
@@ -5,7 +5,7 @@ dep: $(DEPFILE)
5ifndef V 5ifndef V
6SILENT=@ 6SILENT=@
7endif 7endif
8PRINTS=$(info $(1))$(SILENT) 8PRINTS=$(SILENT)$(call info,$(1))
9 9
10$(OBJDIR)/%.c: %.bmp 10$(OBJDIR)/%.c: %.bmp
11 $(SILENT)mkdir -p $(dir $@) 11 $(SILENT)mkdir -p $(dir $@)