|
From: | Bram Kuijper |
Subject: | Re: generate dependency files problem |
Date: | Mon, 25 Jun 2007 14:12:38 +0200 |
User-agent: | Thunderbird 2.0.0.4 (X11/20070618) |
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!
[Prev in Thread] | Current Thread | [Next in Thread] |