help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: generate dependency files problem


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!




reply via email to

[Prev in Thread] Current Thread [Next in Thread]