Date: Thu, 05 Oct 2000 12:29:46 +1100 From: Gregory Bond <gnb@itga.com.au> To: Gerhard Sittig <Gerhard.Sittig@gmx.net> Cc: freebsd-stable@FreeBSD.ORG, gnb@itga.com.au Subject: Re: agp_if.c Message-ID: <200010050129.MAA25324@lightning.itga.com.au> In-Reply-To: Your message of Wed, 04 Oct 2000 21:01:14 %2B0200.
next in thread | raw e-mail | index | archive | help
> Doesn't the old "config; cd; make dep all install" sequence work? Traps for young players: No this (sometimes) doesn't work. You need to do "make depend && make all", so that the second invocation of make picks up the new dependencies calculated by "make depend". Doing them as one command (i.e. "make depend all") will sometimes result in odd behaviour as the make will use the old dependencies for the whole make run. This is one area where gmake differs from BSD make - gmake will reread any makefiles that are changed during the make run, so the "make depend all" trick would work for projects built with gmake. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200010050129.MAA25324>