Sébastien Hinderer writes: > Dear all, > > Is it possible to tell make that one produce several files at once? > > Assume the following example: > > b c: a > cp a b > cp a c >
You could just
all: b c
b c: a
cp a $@
"all" will be executed by default since it is the first rule.
--
Alberto
_______________________________________________
Help-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-make
