On Thu, 2011-05-19 at 11:51 +0100, David Aldrich wrote: > My makefile does not define target 'clean' so I must be using the implicit > clean target.
There is no implicit clean target. If you run "make clean" and something happens, then somewhere in your makefile environment you have created a "clean" target and that target is being invoked. There's no built-in version of "clean". -- ------------------------------------------------------------------------------- Paul D. Smith <[email protected]> Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-make
