Kaydet (Commit) b78be496 authored tarafından Bjoern Michaelsen's avatar Bjoern Michaelsen

rename all target to build in gbuild

üst a11a9499
...@@ -36,10 +36,10 @@ ...@@ -36,10 +36,10 @@
# recursive Module/checks # recursive Module/checks
# Module/subsequentcheck run system tests all system tests # Module/subsequentcheck run system tests all system tests
# recursive Module/subsequentchecks # recursive Module/subsequentchecks
# all (global) build the product top-level Module # build (global) build the product top-level Module
# unitcheck (global) run unit tests top-level Module/unitcheck # unitcheck (global) run unit tests top-level Module/unitcheck
# subsequentcheck (global) run system tests top-level Module/subsequentcheck # subsequentcheck (global) run system tests top-level Module/subsequentcheck
# allandcheck (global) default goal all unitcheck # allandcheck (global) default goal build unitcheck
# Module class # Module class
...@@ -79,20 +79,20 @@ $(call gb_Module_get_target,%) : ...@@ -79,20 +79,20 @@ $(call gb_Module_get_target,%) :
mkdir -p $(dir $@) && \ mkdir -p $(dir $@) && \
touch $@) touch $@)
.PHONY : all allandcheck clean unitcheck subsequentcheck .PHONY : build allandcheck clean unitcheck subsequentcheck
.DEFAULT_GOAL := allandcheck .DEFAULT_GOAL := allandcheck
allandcheck : all unitcheck allandcheck : build unitcheck
# compatibility with the old build system # compatibility with the old build system
ifneq ($(strip $(OOO_SUBSEQUENT_TESTS)),) ifneq ($(strip $(OOO_SUBSEQUENT_TESTS)),)
.DEFAULT_GOAL := subsequentcheck .DEFAULT_GOAL := subsequentcheck
endif endif
all : build :
$(call gb_Output_announce,top level modules: $(foreach module,$(filter-out deliverlog,$^),$(notdir $(module))),$(true),ALL,6) $(call gb_Output_announce,top level modules: $(foreach module,$(filter-out deliverlog,$^),$(notdir $(module))),$(true),ALL,6)
$(call gb_Output_announce,loaded modules: $(sort $(gb_Module_ALLMODULES)),$(true),ALL,6) $(call gb_Output_announce,loaded modules: $(sort $(gb_Module_ALLMODULES)),$(true),ALL,6)
$(call gb_Output_announce_title,all done.) $(call gb_Output_announce_title,build done.)
$(call gb_Output_announce_bell) $(call gb_Output_announce_bell)
unitcheck : unitcheck :
...@@ -100,7 +100,7 @@ unitcheck : ...@@ -100,7 +100,7 @@ unitcheck :
$(call gb_Output_announce_title,all tests checked.) $(call gb_Output_announce_title,all tests checked.)
$(call gb_Output_announce_bell) $(call gb_Output_announce_bell)
# removing the dependency on all for now until we can make a full build with gbuild # removing the dependency on build for now until we can make a full build with gbuild
#subsequentcheck : all #subsequentcheck : all
subsequentcheck : subsequentcheck :
$(call gb_Output_announce,loaded modules: $(sort $(gb_Module_ALLMODULES)),$(true),SCK,6) $(call gb_Output_announce,loaded modules: $(sort $(gb_Module_ALLMODULES)),$(true),SCK,6)
...@@ -221,7 +221,7 @@ endif ...@@ -221,7 +221,7 @@ endif
include $(1) include $(1)
all : $$(firstword $$(gb_Module_TARGETSTACK)) build : $$(firstword $$(gb_Module_TARGETSTACK))
unitcheck : $$(firstword $$(gb_Module_CHECKTARGETSTACK)) unitcheck : $$(firstword $$(gb_Module_CHECKTARGETSTACK))
subsequentcheck : $$(firstword $$(gb_Module_SUBSEQUENTCHECKTARGETSTACK)) subsequentcheck : $$(firstword $$(gb_Module_SUBSEQUENTCHECKTARGETSTACK))
clean : $$(firstword $$(gb_Module_CLEANTARGETSTACK)) clean : $$(firstword $$(gb_Module_CLEANTARGETSTACK))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment