]> git.llucax.com Git - software/makeit.git/blob - Makeit.mak
ed692e2d5334d8865674b8a1e9ed2f599a1e620f
[software/makeit.git] / Makeit.mak
1 ifndef Makeit.mak.included
2 Makeit.mak.included := 1
3
4 # These variables should be provided by the Makefile that include us:
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 # S should be sub-directory where the current makefile is, relative to $T.
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 # Default mode used to install files
24 IMODE ?= 0644
25
26 # Default install flags
27 IFLAGS ?= -D
28
29 # Use pre-compiled headers if non-empty
30 GCH ?=
31
32 # If non-empty, use valgrind to run commands via the "valgrind" function
33 VALGRIND ?=
34
35 # Options to pass to valgrind; if the variable $(VALGRIND_SUPP) is non-empty
36 # it will be used as a suppressions file.
37 VALGRIND_CMD ?= valgrind --tool=memcheck --leak-check=yes --db-attach=no \
38                 --num-callers=24 --leak-resolution=high --track-fds=yes \
39                 --error-exitcode=1 \
40                 $(if $V,--log-file=$<.valgrind.log) \
41                 $(if $(VALGRIND_SUPP),--suppressions=$(VALGRIND_SUPP))
42
43 # Command to generate Sphinx based documentation
44 SPHINX ?= sphinx-build
45
46 # Format to build using Sphinx (html, pickle, htmlhelp, latex, changes or
47 # linkcheck; see sphinx-build docs for details)
48 SPHINX_FORMAT ?= html
49
50 # Paper size for Sphinx LaTeX output (a4, letter, etc.)
51 SPHINX_PAPERSIZE ?= a4
52
53
54 # Directories
55 ##############
56
57 # Base directory where to install files (can be overridden, should be absolute)
58 prefix ?= /usr/local
59
60 # Path to a complete alternative environment, usually a jail, or an installed
61 # system mounted elsewhere than /.
62 DESTDIR ?=
63
64 # Use absolute paths to avoid problems with automatic dependencies when
65 # building from subdirectories
66 T := $(abspath $T)
67
68 # Name of the current directory, relative to $T
69 R := $(subst $T,,$(patsubst $T/%,%,$(CURDIR)))
70
71 # Base directory where to put variants (Variants Directory)
72 VD ?= $T/build
73
74 # Generated files top directory
75 G ?= $(VD)/$F
76
77 # Objects (and other garbage like pre-compiled headers and dependency files)
78 # directory
79 O ?= $G/obj
80
81 # Binaries directory
82 B ?= $G/bin
83
84 # Libraries directory
85 L ?= $G/lib
86
87 # Documentation directory
88 D ?= $(VD)/doc
89
90 # Installation directory
91 I := $(DESTDIR)$(prefix)
92
93 # Includes directory
94 INCLUDE_DIR ?= $G/include
95
96 # Directory of the current makefile (this might not be the same as $(CURDIR)
97 # This variable is "lazy" because $S changes all the time, so it should be
98 # evaluated in the context where $C is used, not here.
99 C = $T/$S
100
101
102 # Functions
103 ############
104
105 # Compare two strings, if they are the same, returns the string, if not,
106 # returns empty.
107 eq = $(if $(subst $1,,$2),,$1)
108
109 # Find sources files and get the corresponding object names.  The first
110 # argument should be the sources extension ("c" or "cpp" typically).  The
111 # second argument is where to search for the sources ($C if omitted).  The
112 # resulting files will always have the suffix "o" and the directory rewritten
113 # to match the directory structure (from $T) but in the $O directory.  For
114 # example, if $T is "/usr/src", $O is "/tmp/obj", $C is "/usr/src/curr" and it
115 # have 2 C sources: "/usr/src/curr/1.c" and "/usr/src/curr/dir/2.c", the call:
116 # $(call find_objects,c)
117 # Will yield "/tmp/obj/curr/1.o" and "/tmp/obj/curr/dir/2.o".
118 find_objects = $(patsubst $T/%.$1,$O/%.o,$(shell \
119                 find $(if $2,$2,$C) -name '*.$1'))
120
121 # Find files and get the their file names relative to another directory.  The
122 # first argument should be the files suffix (".h" or ".cpp" for example).  The
123 # second argument is a directory rewrite, the matched files will be rewriten to
124 # be in the directory specified in this argument (it defaults to the third
125 # argument if omitted).  The third argument is where to search for the files
126 # ($C if omitted).
127 find_files = $(patsubst $(if $3,$3,$C)/%$1,$(if $2,$2,$(if $3,$3,$C))/%$1, \
128                 $(shell find $(if $3,$3,$C) -name '*$1'))
129
130 # Abbreviate a file name. Cut the leading part of a file if it match to the $T
131 # directory, so it can be displayed as if it were a relative directory. Take
132 # just one argument, the file name.
133 abbr_helper = $(subst $T,.,$(patsubst $T/%,%,$1))
134 abbr = $(if $(call eq,$(call abbr_helper,$1),$1),$1,$(addprefix \
135                 $(shell echo $R | sed 's|/\?\([^/]\+\)/\?|../|g'),\
136                 $(call abbr_helper,$1)))
137
138 # Execute a command printing a nice message if $V is @.
139 # The first argument is mandatory and it's the command to execute. The second
140 # and third arguments are optional and are the target name and command name to
141 # pretty print.
142 vexec = $(if $V,\
143                 echo '   $(call abbr,$(if $3,$(strip $3),$(firstword $1))) \
144                                 $(call abbr,$(if $2,$(strip $2),$@))' ; )$1
145
146 # Same as vexec but it silence the echo command (prepending a @ if $V).
147 exec = $V$(call vexec,$1,$2,$3)
148
149 # Compile a source file to an object, generating pre-compiled headers and
150 # dependencies. The pre-compiled headers are generated only if the system
151 # includes change. This function is designed to be used as a command in a rule.
152 # It takes one argument only, the type of file to compile (typically "c" or
153 # "cpp"). What to compile and the output files are built using the automatic
154 # variables from a rule.  You can add non-propagated object-specific flags
155 # defining a variable with the name of the target followed with ".EXTRA_FLAGS".
156 define compile
157 $(if $(GCH),\
158 $Vif test -f $O/$*.d; then \
159         tmp=`mktemp`; \
160         h=`awk -F: '!$$0 {f = 1} $$0 && f {print $$1}' $O/$*.d`; \
161         grep -h '^#include <' $< $$h | sort -u > "$$tmp"; \
162         if diff -q -w "$O/$*.$1.h" "$$tmp" > /dev/null 2>&1; \
163         then \
164                 rm "$$tmp"; \
165         else \
166                 mv "$$tmp" "$O/$*.$1.h"; \
167                 $(call vexec,$(COMPILE.$1) $($@.EXTRA_FLAGS) \
168                         -o "$O/$*.$1.h.gch" "$O/$*.$1.h",$O/$*.$1.h.gch); \
169         fi \
170 else \
171         touch "$O/$*.$1.h"; \
172 fi \
173 )
174 $(call exec,$(COMPILE.$1) $($@.EXTRA_FLAGS) -o $@ -MMD -MP \
175                 $(if $(GCH),-include $O/$*.$1.h) $<)
176 endef
177
178 # Link object files to build an executable. The objects files are taken from
179 # the prerequisite files ($O/%.o). If in the prerequisite files are shared
180 # objects ($L/lib%.so), they are included as libraries to link to (-l%). This
181 # function is designed to be used as a command in a rule. The output name is
182 # taken from the rule automatic variables. If an argument is provided, it's
183 # included in the link command line. The variable LINKER is used to link the
184 # executable; for example, if you want to link a C++ executable, you should use
185 # LINKER := $(CXX).  You can add non-propagated target-specific flags defining
186 # a variable with the name of the target followed with ".EXTRA_FLAGS".  You can
187 # specify a non-propagated object-specific linker defining a variable with the
188 # name of the target followed with ".LINKER".
189 link = $(call exec,$(if $($@.LINKER),$($@.LINKER),$(LINKER)) \
190                 $(LDFLAGS) $(TARGET_ARCH) $($@.EXTRA_FLAGS) -o $@ $1 \
191                 $(patsubst $L/lib%.so,-l%,$(filter %.so,$^)) \
192                 $(foreach obj,$(filter %.o,$^),$(obj)))
193
194 # Install a file. All arguments are optional.  The first argument is the file
195 # mode (defaults to 0644).  The second argument are extra flags to the install
196 # command (defaults to -D).  The third argument is the source file to install
197 # (defaults to $<) and the last one is the destination (defaults to $@).
198 install_file = $(call exec,install -m $(if $1,$1,0644) $(if $2,$2,-D) \
199                 $(if $3,$3,$<) $(if $4,$4,$@))
200
201 # Concatenate variables together.  The first argument is a list of variables
202 # names to concatenate.  The second argument is an optional prefix for the
203 # variables and the third is the string to use as separator (" ~" if omitted).
204 # For example:
205 # X_A := a
206 # X_B := b
207 # $(call varcat,A B,X_, --)
208 # Will produce something like "a -- b --"
209 varcat = $(foreach v,$1,$($2$v)$(if $3,$3, ~))
210
211 # Replace variables with specified values in a template file.  The first
212 # argument is a list of make variables names which will be replaced in the
213 # target file.  The strings @VARNAME@ in the template file will be replaced
214 # with the value of the make $(VARNAME) variable and the result will be stored
215 # in the target file.  The second (optional) argument is a prefix to add to the
216 # make variables names, so if the prefix is PREFIX_ and @VARNAME@ is found in
217 # the template file, it will be replaced by the value of the make variable
218 # $(PREFIX_VARNAME).  The third and fourth arguments are the source file and
219 # the destination file (both optional, $< and $@ are used if omitted). The
220 # fifth (optional) argument are options to pass to the substitute sed command
221 # (for example, use "g" if you want to do multiple substitutions per line).
222 replace = $(call exec,sed '$(foreach v,$1,s|@$v@|$($2$v)|$5;)' $(if $3,$3,$<) \
223                 > $(if $4,$4,$@))
224
225 # Create a symbolic link to the project under the $(INCLUDE_DIR). The first
226 # argument is the name of symbolic link to create.  The link is only created if
227 # it doesn't already exist.
228 symlink_include_dir = $(shell \
229                 test -L $(INCLUDE_DIR)/$1 \
230                         || ln -s $C $(INCLUDE_DIR)/$1 )
231
232 # Create a file with flags used to trigger rebuilding when they change. The
233 # first argument is the name of the file where to store the flags, the second
234 # are the flags and the third argument is a text to be displayed if the flags
235 # have changed (optional).  This should be used as a rule action or something
236 # where a shell script is expected.
237 gen_rebuild_flags = $(shell if test x"$2" != x"`cat $1 2>/dev/null`"; then \
238                 $(if $3,test -f $1 && echo "$3";) \
239                 echo "$2" > $1 ; fi)
240
241 # Include sub-directory's Build.mak.  The only argument is a list of
242 # subdirectories for which Build.mak should be included.  The $S directory is
243 # set properly before including each sub-directory's Build.mak and restored
244 # afterwards.
245 define build_subdir_code
246 _parent__$d__dir_ := $$S
247 S := $$(if $$(_parent__$d__dir_),$$(_parent__$d__dir_)/$d,$d)
248 include $$T/$$S/Build.mak
249 S := $$(_parent__$d__dir_)
250 endef
251 include_subdirs = $(foreach d,$1,$(eval $(build_subdir_code)))
252
253 # Run a command through valgrind if $(VALGRIND) is non-empty.  The first and
254 # only argument is the command to.  If $(VALGRIND) is empty, the command is
255 # executed as passed to this function.  If valgrind is used, the
256 # $(VALGRIND_CMD) is prepended to the command to run.  See VALGRIND_CMD
257 # definition for extra options that can be passed as make variables.
258 valgrind = $(call exec,$(if $(VALGRIND),$(VALGRIND_CMD)) $1,\
259                 $(if $(VALGRIND),[$(firstword $(VALGRIND_CMD))], ),\
260                 $(firstword $1))
261
262
263 # Overridden flags
264 ##################
265
266 # Warn about everything
267 override CPPFLAGS += -Wall
268
269 # Use the includes directories to search for includes
270 override CPPFLAGS += -I$(INCLUDE_DIR)
271
272 # Let the program know where it will be installed
273 override CPPFLAGS += -DPREFIX=$(prefix)
274
275 # Be standard compliant
276 override CFLAGS += -std=c99 -pedantic
277 override CXXFLAGS += -std=c++98 -pedantic
278
279 # Use the generated library directory to for libraries
280 override LDFLAGS += -L$L -Wall
281
282 # Make sure the generated libraries can be found
283 export LD_LIBRARY_PATH := $L:$(LD_LIBRARY_PATH)
284
285
286 # Variant flags
287 ################
288
289 ifeq ($F,dbg)
290 override CPPFLAGS += -ggdb -DDEBUG
291 endif
292
293 ifeq ($F,opt)
294 override CPPFLAGS += -O2 -DNDEBUG
295 endif
296
297 ifeq ($F,cov)
298 override CPPFLAGS += -ggdb -pg --coverage
299 override LDFLAGS += -pg --coverage
300 endif
301
302
303 # Automatic dependency handling
304 ################################
305
306 # These files are created during compilation.
307 sinclude $(shell test -d $O && find $O -name '*.d')
308
309
310 # Default rules
311 ################
312
313 # Compile C objects
314 $O/%.o: $T/%.c $G/compile-c-flags
315         $(call compile,c)
316
317 # Compile C++ objects
318 $O/%.o: $T/%.cpp $G/compile-cpp-flags
319         $(call compile,cpp)
320
321 # Link binary programs
322 $B/%: $G/link-o-flags
323         $(call link)
324
325 # Link shared libraries
326 $L/%.so: override CFLAGS += -fPIC
327 $L/%.so: override CXXFLAGS += -fPIC
328 $L/%.so: $G/link-o-flags
329         $(call link,-shared)
330
331 # Create pkg-config files using a template
332 $L/%.pc:
333         $(call replace,$(PC_VARS),$*-PC-)
334
335 # Run doxygen to build the documentation.  It expects the first prerequisite to
336 # be the Doxyfile to use and the next prerequisites the input files.  This rule
337 # is a little restrictive, but you can always make your own if it doesn't fit
338 # your needs ;)
339 $D/%/doxygen-stamp:
340         $V mkdir -p $(@D)
341         $(call exec,(cat $<; \
342                 echo "FULL_PATH_NAMES=YES"; \
343                 echo "INPUT=$(patsubst $(<D)/%,$(INCLUDE_DIR)/$*/%, \
344                                 $(wordlist 2,$(words $^),$^))"; \
345                 echo "OUTPUT_DIRECTORY=$(@D)"; \
346                 echo "INCLUDE_PATH=$(INCLUDE_DIR)"; \
347                 echo "STRIP_FROM_PATH=$(INCLUDE_DIR)"; \
348                 echo "STRIP_FROM_INC_PATH=$(INCLUDE_DIR)"; \
349                 echo "QUIET=$(if $V,YES,NO)") | doxygen -,$(@D),doxygen)
350         $V touch $@
351
352 # Run Sphinx to build the documentation.  It expects the variable SPHINX_DIR
353 # to be set to the directory where the Sphinx's conf.py and reST source files
354 # are.  This rule is a little restrictive, but you can always make your own if
355 # it doesn't fit your needs ;)
356 $D/%/sphinx-stamp: $G/sphinx-flags
357         $V mkdir -p $(@D)/$(SPHINX_FORMAT)
358         $(call exec,$(SPHINX) $(if $V,-q) -b $(SPHINX_FORMAT) \
359                 -d $(@D)/doctrees -D latex_paper_size=$(SPHINX_PAPERSIZE) \
360                 $(SPHINX_DIR) $(@D)/$(SPHINX_FORMAT),$(@D),$(SPHINX))
361         $V touch $@
362
363 # Install binary programs
364 $I/bin/%:
365         $(call install_file,0755)
366
367 # Install system binary programs
368 $I/sbin/%:
369         $(call install_file,0755)
370
371 # Install pkg-config specification files
372 $I/lib/pkgconfig/%:
373         $(call install_file)
374
375 # Install libraries
376 $I/lib/%:
377         $(call install_file)
378
379 .PHONY: clean
380 clean:
381         $(call exec,$(RM) -r $(VD),$(VD))
382
383 # Phony rule to uninstall all built targets (like "install", uses $(install)).
384 .PHONY: uninstall
385 uninstall:
386         $V$(foreach i,$(install),$(call vexec,$(RM) $i,$i);)
387
388 # These rules use the "Secondary Expansion" GNU Make feature, to allow
389 # sub-makes to add values to the special variables $(all), after this makefile
390 # was read.
391 .SECONDEXPANSION:
392
393 # Phony rule to make all the targets (sub-makefiles can append targets to build
394 # to the $(all) variable).
395 .PHONY: all
396 all: $$(all)
397
398 # Phony rule to install all built targets (sub-makefiles can append targets to
399 # build to the $(install) variable).
400 .PHONY: install
401 install: $$(install)
402
403 # Phony rule to build all documentation targets (sub-makefiles can append
404 # documentation to build to the $(doc) variable).
405 .PHONY: doc
406 doc: $$(doc)
407
408 # Phony rule to build and run all test (sub-makefiles can append targets to
409 # build and run tests to the $(test) variable).
410 .PHONY: test
411 test: $$(test)
412
413
414 # Create build directory structure
415 ###################################
416
417 # Create $O, $B, $L, $D and $(INCLUDE_DIR) directories and replicate the
418 # directory structure of the project into $O. Create one symbolic link "last"
419 # to the current build directory.
420 #
421 # NOTE: the second mkdir can yield no arguments if the project don't have any
422 #       subdirectories, that's why the current directory "." is included, so it
423 #       won't show an error message in case of no subdirectories.
424 setup_build_dir__ := $(shell \
425         mkdir -p $O $B $L $D $(INCLUDE_DIR); \
426         mkdir -p . $(addprefix $O,$(patsubst $T%,%,\
427                         $(shell find $T -type d -not -path '$(VD)*'))); \
428         test -L $(VD)/last || ln -s $F $(VD)/last )
429
430
431 # Automatic rebuilding when flags or commands changes
432 ######################################################
433
434 # Re-compile C files if one of this variables changes
435 COMPILE.c.FLAGS := $(call varcat,CC CPPFLAGS CFLAGS TARGET_ARCH prefix)
436
437 # Re-compile C++ files if one of this variables changes
438 COMPILE.cpp.FLAGS := $(call varcat,CXX CPPFLAGS CXXFLAGS TARGET_ARCH prefix)
439
440 # Re-link binaries and libraries if one of this variables changes
441 LINK.o.FLAGS := $(call varcat,LD LDFLAGS TARGET_ARCH)
442
443 # Re-build sphinx documentation if one of these variables changes
444 SPHINX.FLAGS := $(call varcat,SPHINX SPHINX_FORMAT SPHINX_PAPERSIZE)
445
446 # Create files containing the current flags to trigger a rebuild if they change
447 setup_flag_files__ := $(call gen_rebuild_flags,$G/compile-c-flags, \
448         $(COMPILE.c.FLAGS),C compiler or flags; )
449 setup_flag_files__ := $(setup_flag_files__)$(call gen_rebuild_flags, \
450         $G/compile-cpp-flags, $(COMPILE.cpp.FLAGS),C++ compiler or flags; )
451 setup_flag_files__ := $(setup_flag_files__)$(call gen_rebuild_flags, \
452         $G/link-o-flags, $(LINK.o.FLAGS),linker or link flags; )
453 setup_flag_files__ := $(setup_flag_files__)$(call gen_rebuild_flags, \
454         $G/sphinx-flags, $(SPHINX.FLAGS),sphinx command or flags; )
455
456 # Print any generated message (if verbose)
457 $(if $V,$(if $(setup_flag_files__), \
458         $(info !! Something changed: $(setup_flag_files__)re-building \
459                         affected files...)))
460
461 endif