From e2eb424bc8d330a52916096babe66c35d74aebd1 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 19 Feb 2013 16:58:48 +0100 Subject: [PATCH] Nicer output for profile builds --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index db2f7ef9..77663bbb 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ gluon_prepared_stamp := $(GLUON_BUILDDIR)/$(BOARD)/prepared define GluonProfile image/$(1): $(gluon_prepared_stamp) - $(MAKE) -C $(GLUON_BUILDERDIR) image PROFILE="$(1)" + $(NO_TRACE_MAKE) -C $(GLUON_BUILDERDIR) image PROFILE="$(1)" PROFILES += $(1) PROFILE_PACKAGES += $(filter-out -%,$(2)) $(GLUON_$(1)_SITE_PACKAGES) @@ -158,7 +158,10 @@ prepare: FORCE $(gluon_prepared_stamp): $(GLUONMAKE) prepare -images: $(patsubst %,image/%,$(PROFILES)) +call_image/%: FORCE + $(GLUONMAKE) $(patsubst call_image/%,image/%,$@) + +images: $(patsubst %,call_image/%,$(PROFILES)) ; .PHONY: all images prepare clean cleanall