1 | # The common submakefile used for building all kinds of targets.
|
---|
2 |
|
---|
3 | ifdef .MODULE
|
---|
4 | # If this is the first target in this module, add it to global variables
|
---|
5 | ifeq ($(findstring $(.MODULE),$(MODULES)),)
|
---|
6 | .PHONY: $(.MODULE)
|
---|
7 | MODULES += $(.MODULE)
|
---|
8 | ifdef .MDESC
|
---|
9 | DO.HELP.MODULES += $(call ECHO, $(.MODULE) - $(.MDESC))$(NL)
|
---|
10 | .MDESC :=
|
---|
11 | endif # def .MDESC
|
---|
12 | ifdef .MDEP
|
---|
13 | $(.MODULE): $(.MDEP)
|
---|
14 | .MDEP :=
|
---|
15 | endif # def .MDEP
|
---|
16 | endif # eq ($(findstring $(.MODULE),$(MODULES)),)
|
---|
17 | endif # def .MODULE
|
---|
18 |
|
---|
19 | # Canonicalize target kind to the form objectformat-threadness{-profiling}
|
---|
20 | ifneq ($(findstring aout,$(.TKIND)),)
|
---|
21 | .tmp := aout
|
---|
22 | else
|
---|
23 | .tmp := omf
|
---|
24 | endif # neq ($(findstring aout,$(.TKIND)),)
|
---|
25 | ifneq ($(findstring prof,$(.TKIND)),)
|
---|
26 | .tmp += prof
|
---|
27 | endif # neq ($(findstring prof,$(.TKIND)),)
|
---|
28 | .TKIND := $(.tmp)
|
---|
29 | .TKIND.DIR := $(subst $(SPACE),-,$(.TKIND))/
|
---|
30 | .DIRS :=
|
---|
31 |
|
---|
32 | ifdef .TARGET
|
---|
33 |
|
---|
34 | # .TARG is same as .TARGET except that it has a st/ or mt/ prefix
|
---|
35 | .TARG := $(.TKIND.DIR)$(.TARGET)
|
---|
36 | .DIRS += $.$(.TKIND.DIR)
|
---|
37 |
|
---|
38 | ifdef .INSDIR
|
---|
39 | INS.FILES += $(INS)$(.INSDIR)$(.TARGET)
|
---|
40 | $(INS)$(.INSDIR)$(.TARGET): $.$(.TARG)
|
---|
41 | $(call CP,$<,$@)
|
---|
42 | endif # def .INSDIR
|
---|
43 |
|
---|
44 | # We know how to create dependency files for .c and .cpp files
|
---|
45 | .tmp := $(strip $(filter %.c,$(.TSRC)) $(filter %.cpp,$(.TSRC)))
|
---|
46 | ifdef .tmp
|
---|
47 | # Read the dependency file
|
---|
48 | -include $.$(.TKIND.DIR)dep-$(.TARGET).smak
|
---|
49 |
|
---|
50 | TARGDEPEND += $.$(.TKIND.DIR)dep-$(.TARGET).smak
|
---|
51 |
|
---|
52 | ifdef BUILD_DEPS
|
---|
53 | # How to build the dependency file
|
---|
54 | $.$(.TKIND.DIR)dep-$(.TARGET).smak: $(.tmp)
|
---|
55 | $(DO.DEPS)
|
---|
56 | endif # BUILD_DEPS
|
---|
57 | endif # def .tmp
|
---|
58 |
|
---|
59 | endif # def .TARGET
|
---|
60 |
|
---|
61 | # If module has any source files, find respective object file names
|
---|
62 | # and directories where they will be built
|
---|
63 | ifdef .TSRC
|
---|
64 |
|
---|
65 | .OBJS := $(addprefix $.,$(call OBJFILE,$(.TSRC)))
|
---|
66 | .DIRS += $(sort $(dir $(.OBJS)))
|
---|
67 |
|
---|
68 | # Remove the names of files for which we already generated build rules
|
---|
69 | # so that we won't generate same rule twice. In general this is not very
|
---|
70 | # correct since two targets may want a object file compiled with different
|
---|
71 | # options (e.g. .TCF) but we assume that the developer knows what's doing.
|
---|
72 | ifndef BUILD.RULES
|
---|
73 | # We need BUILD.RULES to be a expand-value-on-assignment type variable,
|
---|
74 | # rather than expand-value-on-reference.
|
---|
75 | BUILD.RULES :=
|
---|
76 | endif
|
---|
77 | .TSRC := $(filter-out $(BUILD.RULES),$(join $(addsuffix :,$(.OBJS)),$(.TSRC)))
|
---|
78 | BUILD.RULES += $(.TSRC)
|
---|
79 | .TSRC := $(filter-out $(.OBJS),$(subst :, ,$(.TSRC)))
|
---|
80 |
|
---|
81 | # Generate compilation rules for C files
|
---|
82 | RULES += $(foreach x,$(filter %.c,$(.TSRC)),\
|
---|
83 | $(call FECHO,_@,$$.$(call OBJFILE,$x): $x)$(NL)\
|
---|
84 | $(call FECHO,_@, $$(call DO.COMPILE.c,$(.TCF) $(.TCF.$x)))$(NL)\
|
---|
85 | )
|
---|
86 |
|
---|
87 | # Generate compilation rules for S files
|
---|
88 | RULES += $(foreach x,$(filter %.s,$(.TSRC)),\
|
---|
89 | $(call FECHO,_@,$$.$(call OBJFILE,$x): $x)$(NL)\
|
---|
90 | $(call FECHO,_@, $$(call DO.COMPILE.s,$(.TSF) $(.TSF.$x)))$(NL)\
|
---|
91 | )
|
---|
92 |
|
---|
93 | # Generate compilation rules for asm files
|
---|
94 | RULES += $(foreach x,$(filter %.asm,$(.TSRC)),\
|
---|
95 | $(call FECHO,_@,$$.$(call OBJFILE,$x): $x)$(NL)\
|
---|
96 | $(call FECHO,_@, $$(call DO.COMPILE.asm,$(.TAF) $(.TAF.$x)))$(NL)\
|
---|
97 | )
|
---|
98 |
|
---|
99 | endif # def .TSRC
|
---|
100 |
|
---|
101 | # Add target directories to module dependencies and to overall list of dirs
|
---|
102 | ifneq ($(.DIRS),)
|
---|
103 | TARGDIRS += $(.DIRS)
|
---|
104 | ifdef .MODULE
|
---|
105 | $(.MODULE): $(.DIRS)
|
---|
106 | endif # def .MODULE
|
---|
107 | endif # neq ($(.DIRS),)
|
---|
108 |
|
---|
109 | # Add the target to the list of module dependencies
|
---|
110 | ifdef .TARGET
|
---|
111 | $(.MODULE): $.$(.TARG)
|
---|
112 | endif # def .TARGET
|
---|
113 |
|
---|
114 | # Replace the special sequence in .TDEP @O@ with $.$(.TKIND.DIR)
|
---|
115 | .DEPS := $(subst @O@,$.$(.TKIND.DIR),$(.TDEP))
|
---|