%% Ipplepen <[EMAIL PROTECTED]> writes: i> Can anyone tell me what the difference is between what seem to be i> standard makefile targets "clean" and "cleandir" please ?
Not sure what you mean by "standard"; there are no predefined targets that come with GNU make. There are some conventions, and a very common one is that "clean" will clean up any derived objects created by an invocation of "make". There's no common target "cleandir" that I'm aware of, so we can't suggest exactly what it might mean. Why don't you just look at the makefile and see? -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
