]> git.llucax.com Git - software/makeit.git/blob - Lib.mak
Rearrange detection of changes in build flags
[software/makeit.git] / Lib.mak
1 ifndef Lib.mak.included
2 Lib.mak.included := 1
3
4 # These variables should be provided by the includer Makefile:
5 # P should be the project name, mostly used to handle include directories
6 # T should be the path to the top-level directory.
7 # C should be the path to the current directory.
8
9 # Verbosity flag (empty show nice messages, non-empty use make messages)
10 # When used internal, $V expand to @ is nice messages should be printed, this
11 # way it's easy to add $V in front of commands that should be silenced when
12 # displaying the nice messages.
13 override V := $(if $V,,@)
14 # honour make -s flag
15 override V := $(if $(findstring s,$(MAKEFLAGS)),,$V)
16
17 # Flavor (variant), should be one of "dbg", "opt" or "cov"
18 F ?= opt
19
20 # Use C++ linker by default
21 LINKER := $(CXX)
22
23 # Use precompiled headers if non-empty
24 GCH ?=
25
26
27 # Directories
28 ##############
29
30 # Use absolute paths to avoid problems with automatic dependencies when
31 # building from subdirectories
32 T := $(abspath $T)
33
34 # Name of the current directory, relative to $T
35 R := $(subst $T,,$(patsubst $T/%,%,$(CURDIR)))
36
37 # Base directory where to put variants
38 D ?= $T/build
39
40 # Generated files top directory
41 G ?= $D/$F
42
43 # Objects (and other garbage like precompiled headers and dependency files)
44 # directory
45 O ?= $G/obj
46
47 # Binaries directory
48 B ?= $G/bin
49
50 # Libraries directory
51 L ?= $G/lib
52
53
54 # Includes directory
55 INCLUDE_DIR ?= $G/include
56
57
58 # Functions
59 ############
60
61 # Find sources files and get the corresponding object names
62 # The first argument should be the sources extension ("c" or "cpp" typically)
63 # It expects the variable $T and $O to be defined as commented previously in
64 # this file. $C should be defined to the path to the current directory relative
65 # to the top-level.
66 find_objects = $(patsubst $T/%.$1,$O/%.o,$(shell find $T/$C -name '*.$1'))
67
68 # Abbreviate a file name. Cut the leading part of a file if it match to the $T
69 # directory, so it can be displayed as if it were a relative directory. Take
70 # just one argument, the file name.
71 abbr = $(addprefix $(shell echo $R | sed 's|/\?\([^/]\+\)/\?|../|g'),\
72                 $(subst $T,.,$(patsubst $T/%,%,$1)))
73
74 # Execute a command printing a nice message if $V is @.
75 # The first argument is mandatory and it's the command to execute. The second
76 # and third arguments are optional and are the target name and command name to
77 # pretty print.
78 vexec = $(if $V,\
79                 echo '   $(notdir $(if $3,$(strip $3),$(firstword $1))) \
80                                 $(call abbr,$(if $2,$(strip $2),$@))' ; )$1
81
82 # Same as vexec but it silence the echo command (prepending a @ if $V).
83 exec = $V$(call vexec,$1,$2,$3)
84
85 # Compile a source file to an object, generating pre-compiled headers and
86 # dependencies. The pre-compiled headers are generated only if the system
87 # includes change. This function is designed to be used as a command in a rule.
88 # It takes one argument only, the type of file to compile (typically "c" or
89 # "cpp"). What to compile and the output files are built using the automatic
90 # variables from a rule.
91 define compile
92 $(if $(GCH),\
93 $Vif test -f $O/$*.d; then \
94         tmp=`mktemp`; \
95         h=`awk -F: '!$$0 {f = 1} $$0 && f {print $$1}' $O/$*.d`; \
96         grep -h '^#include <' $(call abbr,$<) $$h | sort -u > "$$tmp"; \
97         if diff -q -w "$(call abbr,$O/$*.$1.h)" "$$tmp" > /dev/null 2>&1; \
98         then \
99                 rm "$$tmp"; \
100         else \
101                 mv "$$tmp" "$(call abbr,$O/$*.$1.h)"; \
102                 $(call vexec,$(COMPILE.$1) -o "$O/$*.$1.h.gch" "$O/$*.$1.h",\
103                                 $O/$*.$1.h.gch); \
104         fi \
105 else \
106         touch "$(call abbr,$O/$*.$1.h)"; \
107 fi \
108 )
109 $(call exec,$(COMPILE.$1) -o $@ -MMD -MP $(if $(GCH),-include $O/$*.$1.h) $<)
110 endef
111
112 # Link object files to build an executable. The objects files are taken from
113 # the prerequisite files ($O/%.o). If in the prerequisite files are shared
114 # objects ($L/lib%.so), they are included as libraries to link to (-l%). This
115 # function is designed to be used as a command in a rule. The ouput name is
116 # taken from the rule automatic variables. If an argument is provided, it's
117 # included in the link command line. The variable LINKER is used to link the
118 # executable; for example, if you want to link a C++ executable, you should use
119 # LINKER := $(CXX).
120 link = $(call exec,$(LINKER) $(LDFLAGS) $(TARGET_ARCH) -o $@ $1 \
121                 $(patsubst $L/lib%.so,-l%,$(filter %.so,$^)) \
122                 $(foreach obj,$(filter %.o,$^),$(obj)))
123
124 # Create a symbolic link to the project under the $(INCLUDE_DIR). The first
125 # argument is the name of symlink to create.  The link is only created if it
126 # doesn't already exist.
127 symlink_include_dir = $(shell \
128                 test -L $(INCLUDE_DIR)/$1 \
129                         || ln -s $T/$C $(INCLUDE_DIR)/$1 )
130
131
132 # Overrided flags
133 ##################
134
135 # Warn about everything
136 override CPPFLAGS += -Wall
137
138 # Use the includes directories to search for includes
139 override CPPFLAGS += -I$(INCLUDE_DIR)
140
141 # Be standard compilant
142 override CFLAGS += -std=c99 -pedantic
143 override CXXFLAGS += -std=c++98 -pedantic
144
145 # Use the generated library directory to for libraries
146 override LDFLAGS += -L$L -Wall
147
148 # Make sure the generated libraries can be found
149 export LD_LIBRARY_PATH := $L:$(LD_LIBRARY_PATH)
150
151
152 # Variant flags
153 ################
154
155 ifeq ($F,dbg)
156 override CPPFLAGS += -ggdb -DDEBUG
157 endif
158
159 ifeq ($F,opt)
160 override CPPFLAGS += -O2 -DNDEBUG
161 endif
162
163 ifeq ($F,cov)
164 override CPPFLAGS += -ggdb -pg --coverage
165 override LDFLAGS += -pg --coverage
166 endif
167
168
169 # Automatic dependency handling
170 ################################
171
172 # These files are created during compilation.
173 sinclude $(shell test -d $O && find $O -name '*.d')
174
175
176 # Default rules
177 ################
178
179 $O/%.o: $T/%.c $G/compile-c-flags
180         $(call compile,c)
181
182 $O/%.o: $T/%.cpp $G/compile-cpp-flags
183         $(call compile,cpp)
184
185 $B/%: $G/link-o-flags
186         $(call link)
187
188 $L/%.so: override CFLAGS += -fPIC
189 $L/%.so: override CXXFLAGS += -fPIC
190 $L/%.so: $G/link-o-flags
191         $(call link,-shared)
192
193 .PHONY: clean
194 clean:
195         $(call exec,$(RM) -r $D,$D)
196
197 # These rules use the "Secondary Expansion" GNU Make feature, to allow
198 # sub-makes to add values to the special variables $(all), after this makefile
199 # was read.
200 .SECONDEXPANSION:
201   
202 # Phony rule to make all the targets (sub-makefiles can append targets to build
203 # to the $(all) variable).
204 .PHONY: all
205 all: $$(all)
206
207
208 # Create build directory structure
209 ###################################
210
211
212 # Create $O, $B, $L and $(INCLUDE_DIR) directories and replicate the directory
213 # structure of the project into $O. Create one symlink "last" to the current
214 # build directory.
215 #
216 # NOTE: the second mkdir can yield no arguments if the project don't have any
217 #       subdirectories, that's why the current directory "." is included, so it
218 #       won't show an error message in case of no subdirectories.
219 setup_build_dir__ := $(shell \
220         mkdir -p $O $B $L $(INCLUDE_DIR); \
221         mkdir -p . $(addprefix $O,$(patsubst $T%,%,\
222                         $(shell find $T -type d -not -path '$D*'))); \
223         test -L $D/last || ln -s $F $D/last )
224
225
226 # Automatic rebuilding when flags or commands changes
227 ######################################################
228
229 # Re-compile C files if one of this variables changes
230 COMPILE.c.FLAGS += $(CC) ~ $(CPPFLAGS) ~ $(CFLAGS) ~ $(TARGET_ARCH)
231
232 # Re-compile C++ files if one of this variables changes
233 COMPILE.cpp.FLAGS += $(CXX) ~ $(CPPFLAGS) ~ $(CXXFLAGS) ~ $(TARGET_ARCH)
234
235 # Re-link binaries and libraries if one of this variables changes
236 LINK.o.FLAGS += $(LD) ~ $(LDFLAGS) ~ $(TARGET_ARCH)
237
238 # Create a file with flags used to trigger rebuilding when they change. The
239 # first argument is the name of the file where to store the flags, the second
240 # are the flags and the third argument is a text to be displayed if the flags
241 # have changed.  This should be used as a rule action or something where
242 # a shell script is expected.
243 gen_rebuild_flags = if test x"$2" != x"`cat $1 2>/dev/null`"; then \
244                 test -f $1 && echo "$3"; \
245                 echo "$2" > $1 ; fi
246
247 # Create files containing the current flags to trigger a rebuild if they change
248 setup_flag_files__ := $(shell \
249         $(call gen_rebuild_flags,$G/compile-c-flags, \
250                         $(COMPILE.c.FLAGS),C compiler or flags;); \
251         $(call gen_rebuild_flags,$G/compile-cpp-flags, \
252                         $(COMPILE.cpp.FLAGS),C++ compiler or flags;); \
253         $(call gen_rebuild_flags,$G/link-o-flags, \
254                         $(LINK.o.FLAGS),linker or link flags;) )
255
256 # Print any generated message (if verbose)
257 $(if $V,$(if $(setup_flag_files__), \
258         $(info !! Something changed: $(setup_flag_files__) \
259                         re-building affected files...)))
260
261 endif