]> rtime.felk.cvut.cz Git - omk.git/blob - snippets/prepare
Added notification when updating .omk.inc files
[omk.git] / snippets / prepare
1
2 ################
3 # Prepare pass #
4 ################
5
6 $(eval $(call omk_pass_template,prepare-pass))
7
8 ###
9 # Name of the prepared rule.  This name is used as prefix of variable
10 # names in .omk.inc and is based on the first target
11 omk_inc_rule = $(firstword $(1:$(OUTPUT_DIR)/%=%))
12
13 # The name of .omk.inc file is derived from $(omk_inc_rule) and
14 # depends whether the target is under _build or elsewhere.
15 omk_inc_file = $(if $(filter $(BUILD_DIR_NAME)%,$(omk_inc_rule)),\
16                     $(OMK_WORK_DIR)/$(notdir $(omk_inc_rule)).omk.inc,\
17                     $(OMK_WORK_DIR)/$(subst /,_,$(omk_inc_rule)).omk.inc)
18
19 target_omk_file = $(OMK_WORK_DIR)/$(notdir $(1)).target.omk
20
21 # >\< substitution to preserve \ in echo argument
22 # >'< substitution is for echo to work,
23 # >$< substitution to preserve $ when reloading .omk.inc file
24 subst-cmd = $(subst $$,$$$$,$(call escsq,$(subst \,\\,$(1))))
25
26 ###
27 # prepare_rule is used to generate .omk.inc files during prepare-pass.
28 # All paths in this file should be relative to $(OUTPUT_DIR)
29 # Usage: $(eval $(call prepare_rule,<targets>,<deps>,<msg>,<cmd>))
30 define prepare_rule
31 prepare-pass-local: $(omk_inc_file)
32
33 .PHONY: $(omk_inc_file)
34 $(omk_inc_file):
35 #TODO remove echos from the next commands
36         @set -e;\
37             echo 'prepared_rules += $(omk_inc_rule)' > $$@.tmp; \
38             echo '$(omk_inc_rule)_targets = $$(call strip_out,$(1))' >> $$@.tmp; \
39             echo '$(omk_inc_rule)_deps += $$(call strip_out,$(2))' >> $$@.tmp; \
40             echo '$(omk_inc_rule)_msg = $(3)' >> $$@.tmp; \
41             echo '$(omk_inc_rule)_cmd = $(call subst-cmd,$(4))' >> $$@.tmp; \
42         if cmp -s $$@.tmp $$@; then rm $$@.tmp; echo "  CHK     "$$(call strip_out,$$@); else mv $$@.tmp $$@; echo "  UPD     "$$(call strip_out,$$@); fi
43 endef
44
45 ###
46 # prepare_rule_goal - same as prepare rules but the target is put
47 # as dependency to the default goal, which causes it to be built
48 # upon calling make
49 define prepare_rule_goal
50 $(call prepare_rule,$(1),$(2),$(3),$(4))
51 prepared_goals += $(call strip_out,$(1))
52 endef
53
54 prepare-pass-local: $(OMK_WORK_DIR)/__goals.omk.inc
55 $(OMK_WORK_DIR)/__goals.omk.inc: FORCE
56         @echo 'omk_goals += $(prepared_goals)' > $@.tmp; \
57             if cmp -s $@.tmp $@; then rm $@.tmp; else mv $@.tmp $@; fi
58
59