changeset 7778:549b13cd793b

Configure: marked top-level make targets as phony. Reported by Thibault NĂ©lis.
author Ruslan Ermilov <ru@nginx.com>
date Sat, 20 Feb 2021 12:44:26 +0300
parents 5ef14498edf7
children 018a09b766ef
files auto/init auto/install
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/auto/init
+++ b/auto/init
@@ -48,4 +48,6 @@ default:	build
 
 clean:
 	rm -rf Makefile $NGX_OBJS
+
+.PHONY:	default clean
 END
--- a/auto/install
+++ b/auto/install
@@ -215,4 +215,6 @@ upgrade:
 	test -f $NGX_PID_PATH.oldbin
 
 	kill -QUIT \`cat $NGX_PID_PATH.oldbin\`
+
+.PHONY:	build install modules upgrade
 END