I am not aware of any way to define programatically targets in GNU Make. How is this possible?
Sometimes one can go away with alternate methods. The ability to define programatically targets in Makefiles is however a very important to write and organise complex production rules with make
. Examples of complex production rules are found in the build system of FreeBSD or in Makefile libraries such as BSD Owl
The main differences between shell scripts and Makefiles are:
In a Makefile, the state of the program is given by the command line and the filesystem, so it is possible to resume a job after it has been interrupted. Of course, this requires to properly write the Makefiles, but even if this is rather hard, it is considerably easier than to achieve a similar effect with a shell script.
In a Makefile, it is ridiculously easy to decorate a procedure with advises or decorate it with hooks, while this is essentially impossible in shell scripts.
For instance, a very simple and useful pattern is the following:
build: pre-build
build: do-build
build: post-build
This presents the build
target as a composite of three targets, one containing the actual instructions do-build
and two other that are hooks, executed before and after do-build
. This pattern is used by many build systems written for BSD Make, which incidentally allows programmatic definition of targets, so that one can write in a batch:
.for _target in configure build test install
.if !target(${_target})
${_target}: pre-${_target}
${_target}: do-${_target}
${_target}: post-${_target}
.endif
.endfor
The condition introduced by the .if/.endif
block enables the user to use its own definition of any ${_target}
.
What would be the translation of that snippet for GNU Make?
FWIW here is the make equivalent syntax for
.for _target in configure build test install
.if !target(${_target})
${_target}: pre-${_target}
${_target}: do-${_target}
${_target}: post-${_target}
.endif
.endfor
Basically, you want make to see something like this snippet:
build: pre-build
build: do-build
build: post-build
and similarly for configure
, test
and install
. This suggests a loop with an eval
somewhere:
define makerule =
$1: pre-$1
$1: do-$1
$1: post-$1
endef
targets := configure build test install
$(foreach _,${targets},$(eval $(call makerule,$_)))
(to play with this, change eval
to info
). Careful with those closures!
FWIW, here's the expansion of the foreach
:
${targets}
becomes configure
, build
, test
and install
$(foreach _,configure build test install,$(eval $(call makerule,$_)))
_
is set to the first value, configure
.$(eval $(call makerule,configure))
eval
, make expands $(call makerule,configure)
1
to configure
, and expanding ${makerule}
which produces 3 lines of text:configure: pre-configure
configure: do-configure
configure: post-configure
$(eval)
goes to work, reading this text as make syntax$(eval)
is empty! All its work is done as a side effect.
Wash, lather, rinse, repeat.Please note: I have to agree with all the other commenters: your pattern is bad make. If your makefile is not -j
safe, then it is broken (missing dependencies).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With