tools build: Add subdir support
[firefly-linux-kernel-4.4.55.git] / tools / build / Makefile.build
1 ###
2 # Main build makefile.
3 #
4 #  Lots of this code have been borrowed or heavily inspired from parts
5 #  of kbuild code, which is not credited, but mostly developed by:
6 #
7 #  Copyright (C) Sam Ravnborg <sam@mars.ravnborg.org>, 2015
8 #  Copyright (C) Linus Torvalds <torvalds@linux-foundation.org>, 2015
9 #
10
11 PHONY := __build
12 __build:
13
14 ifeq ($(V),1)
15   quiet =
16 else
17   quiet=quiet_
18 endif
19
20 build-dir := $(srctree)/tools/build
21
22 # Generic definitions
23 include $(build-dir)/Build.include
24
25 # do not force detected configuration
26 -include .config-detected
27
28 # Init all relevant variables used in build files so
29 # 1) they have correct type
30 # 2) they do not inherit any value from the environment
31 subdir-y     :=
32 obj-y        :=
33 subdir-y     :=
34 subdir-obj-y :=
35
36 # Build definitions
37 build-file := $(dir)/Build
38 include $(build-file)
39
40 # Create directory unless it exists
41 quiet_cmd_mkdir = MKDIR    $(dir $@)
42       cmd_mkdir = mkdir -p $(dir $@)
43      rule_mkdir = $(if $(wildcard $(dir $@)),,@$(call echo-cmd,mkdir) $(cmd_mkdir))
44
45 # Compile command
46 quiet_cmd_cc_o_c = CC       $@
47       cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
48
49 # Link agregate command
50 # If there's nothing to link, create empty $@ object.
51 quiet_cmd_ld_multi = LD       $@
52       cmd_ld_multi = $(if $(strip $(obj-y)),\
53                        $(LD) -r -o $@ $(obj-y),rm -f $@; $(AR) rcs $@)
54
55 # Build rules
56 $(OUTPUT)%.o: %.c FORCE
57         $(call rule_mkdir)
58         $(call if_changed_dep,cc_o_c)
59
60 $(OUTPUT)%.o: %.S FORCE
61         $(call rule_mkdir)
62         $(call if_changed_dep,cc_o_c)
63
64 # Gather build data:
65 #   obj-y        - list of build objects
66 #   subdir-y     - list of directories to nest
67 #   subdir-obj-y - list of directories objects 'dir/$(obj)-in.o'
68 obj-y        := $($(obj)-y)
69 subdir-y     := $(patsubst %/,%,$(filter %/, $(obj-y)))
70 obj-y        := $(patsubst %/, %/$(obj)-in.o, $(obj-y))
71 subdir-obj-y := $(filter %/$(obj)-in.o, $(obj-y))
72
73 # '$(OUTPUT)/dir' prefix to all objects
74 prefix       := $(subst ./,,$(OUTPUT)$(dir)/)
75 obj-y        := $(addprefix $(prefix),$(obj-y))
76 subdir-obj-y := $(addprefix $(prefix),$(subdir-obj-y))
77
78 # Final '$(obj)-in.o' object
79 in-target := $(prefix)$(obj)-in.o
80
81 PHONY += $(subdir-y)
82
83 $(subdir-y):
84         @$(MAKE) -f $(build-dir)/Makefile.build dir=$(dir)/$@ obj=$(obj)
85
86 $(sort $(subdir-obj-y)): $(subdir-y) ;
87
88 $(in-target): $(obj-y) FORCE
89         $(call rule_mkdir)
90         $(call if_changed,ld_multi)
91
92 __build: $(in-target)
93         @:
94
95 PHONY += FORCE
96 FORCE:
97
98 # Include all cmd files to get all the dependency rules
99 # for all objects included
100 targets   := $(wildcard $(sort $(obj-y) $(in-target)))
101 cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
102
103 ifneq ($(cmd_files),)
104   include $(cmd_files)
105 endif
106
107 .PHONY: $(PHONY)