%% Christophe Vial <[EMAIL PROTECTED]> writes:
cv> The static rule seems to behave as I would expect. But the non
cv> static one automatically does a rm of the dependency...
cv> Am I missing something?
Look up intermediate targets in the GNU make manual.
Cheers!
--
Hi,
I found that weird behavior while experimenting with the static rules
capabilities and I'm not sure if it is a bug or a feature. Here is a
simple testcase:
% cat Makefile
titi.test : %.test : %.testsrc
echo "special test"
%.test : %.testsrc
echo "normal test"
%.test