Abstract description
I have the following situation in a Makefile:
target_1 target_2 :
some_recipe_that_creates_both
target_1 :
some_recipe_that_creates_only_target_1
Note that it is impossible to have a recipe that builds target_2
without target_1
efficiently. Therefore, if I already need to build target_2
I would like to avoid running the target_1
-only recipe. Ideally this would mean make would work as follows:
- If someone tries to make
target_1
withouttarget_2
, then use the second recipe from the makefile sample since it is faster. - If someone tries to make
target_1
andtarget_2
, use the first recipe from the makefile sample since it is faster than running the recipe that creates both.
Is there a way that I can achieve this? I am aware of double-colon rules, bu they would run both recipes instead of only one of them.
Note that I need a solution that supports make with the -j
parameter as well (but there is no recursive make).
The real scenario
The following text is here only for completeness sake and due to comments asking what the real scenario here is, it describes what target_1
and target_2
are:
I am compiling a shared library and executables that depend on it. If I finished compiling the shared library, I would like to make sure that the exe still sees all the symbols it needs in it. There are two ways to do it:
- Have the exe linking depend on the shared objects.
- Split exe linking into two steps (with empty marker files as the targets), exe linking, and missing symbol check (
ldd -r
). The problem is that exe linking already implies missing symbols check, so missing symbol check is essentiallytarget_1
, and linking is doing bothtarget_1
andtarget_2
).
It's a little bit of a hack but something like the following might work