I have a somewhat large and complex Makefile setup that postprocesses some data files. Overall it work quite well, but I have run into an annoying issue where Make builds the same target many times over under different directory names.
As a simple example, consider the Makefile
foo : 1/foo 2/foo
cat $^ > $@
%/foo : %/../bar
cat $^ > $@
%/bar : %/baz
cat $^ > $@
Initialized with file baz
and directories 1
and 2
, make will produce the following series of builds, when done in parallel mode:
cat 1/../baz > 1/../bar
cat 2/../baz > 2/../bar
cat 2/../bar > 2/foo
cat 1/../bar > 1/foo
cat 1/foo 2/foo > foo
rm 2/../bar
Note how the first two commands do exactly the same thing.
Is there a way of convincing Make that 1/../bar
and 2/../bar
are the same file, so it only should do that recipe once?
Instead of using relative path, you can use absolute path by using the realpath or abspath functions:
Or something like that:
Here is the result