Date: Sun, 6 Aug 2000 03:40:05 -0700 (PDT) From: Johan Karlsson <k@numeri.campus.luth.se> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/4697: make doesn't handle dependencies with forced target correctly Message-ID: <200008061040.DAA29771@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/4697; it has been noted by GNATS. From: Johan Karlsson <k@numeri.campus.luth.se> To: freebsd-gnats-submit@FreeBSD.org Cc: marcs@znep.com Subject: Re: bin/4697: make doesn't handle dependencies with forced target correctly Date: Sun, 06 Aug 2000 12:40:53 +0200 Hi Marc To force a target to be executed in make one should use .PHONY. With the following makefile your test case works as expected. #---------------------------- default: proxy @echo "Done building module subdirectories" .PHONY: proxy proxy: @echo making: $@ #----------------------------- This is the case in at least FreeBSD 4.1 and hence -current. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200008061040.DAA29771>