clean: rm $(objects) $(libraries) \ $(dependencies)ifneq "$(MAKECMDGOALS)" "clean" include $(dependencies) endif There's a stray tab before the 'include' which means that it actually gets included as one of the commands to run when you do 'clean' (except, of course, it doesn't because of the ifneq. Remove that tab and it'll work.
yes, it works! thanks a lot! _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
