Nicer output for profile builds

This commit is contained in:
Matthias Schiffer 2013-02-19 16:58:48 +01:00
parent 5460b64a8f
commit e2eb424bc8

View File

@ -97,7 +97,7 @@ gluon_prepared_stamp := $(GLUON_BUILDDIR)/$(BOARD)/prepared
define GluonProfile define GluonProfile
image/$(1): $(gluon_prepared_stamp) image/$(1): $(gluon_prepared_stamp)
$(MAKE) -C $(GLUON_BUILDERDIR) image PROFILE="$(1)" $(NO_TRACE_MAKE) -C $(GLUON_BUILDERDIR) image PROFILE="$(1)"
PROFILES += $(1) PROFILES += $(1)
PROFILE_PACKAGES += $(filter-out -%,$(2)) $(GLUON_$(1)_SITE_PACKAGES) PROFILE_PACKAGES += $(filter-out -%,$(2)) $(GLUON_$(1)_SITE_PACKAGES)
@ -158,7 +158,10 @@ prepare: FORCE
$(gluon_prepared_stamp): $(gluon_prepared_stamp):
$(GLUONMAKE) prepare $(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 .PHONY: all images prepare clean cleanall