Lin George wrote:
% :: $(Foo);
Means: in order to build any file (that's what the % matches) from the prerequisites $(Foo) do nothing (that's what the ; means---if there was a command after the ; it would be executed when this rule ran).
%.test :: ;
In order to build anything that ends .test do nothing. John. _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
