From f624144e41291c11f3892dda1027221989d704be Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Mon, 25 Feb 2013 11:56:21 +0100 Subject: move postprocess to gbuild MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the gb_Postprocess* foo could also be in gb_Module* as it is conceptionally close ('do things globally/productwide'). OTOH I see no obvious reason for e.g. signing not to be done right along with building a lib/executable anyway instead of in postprocess. The same is likely true for the other stuff too. Change-Id: I9c8f569564c056643af7ca39bfe038ed228dcd3d Reviewed-on: https://gerrit.libreoffice.org/2426 Reviewed-by: Matúš Kukan Reviewed-by: Fridrich Strba Tested-by: Fridrich Strba --- solenv/gbuild/Executable.mk | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'solenv/gbuild/Executable.mk') diff --git a/solenv/gbuild/Executable.mk b/solenv/gbuild/Executable.mk index 7989d2410808..5c071a5c8dfc 100644 --- a/solenv/gbuild/Executable.mk +++ b/solenv/gbuild/Executable.mk @@ -48,6 +48,7 @@ $(call gb_Executable_get_clean_target,%) : $(AUXTARGETS)) define gb_Executable_Executable +$(call gb_Postprocess_get_target,AllExecutables) : $(call gb_Executable_get_target,$(1)) ifeq (,$$(findstring $(1),$$(gb_Executable_KNOWN))) $$(eval $$(call gb_Output_info,Currently known executables: $(sort $(gb_Executable_KNOWN)),ALL)) $$(eval $$(call gb_Output_error,Executable $(1) must be registered in Repository.mk)) @@ -168,4 +169,8 @@ $(call gb_Executable_get_runtime_target,$(1)) : $(2) endef +$(call gb_Postprocess_get_target,AllExecutables) : + $(call gb_Output_announce,All executables: $^,$(true),ALL) + $(call gb_Helper_abbreviate_dirs,mkdir -p $(dir $@) && touch $@) + # vim: set noet sw=4: -- cgit