Configure: marked top-level make targets as phony.

Reported by Thibault Nélis.
This commit is contained in:
Ruslan Ermilov 2021-02-20 12:44:26 +03:00
parent 351e3881ae
commit 161ea74858
2 changed files with 4 additions and 0 deletions

View File

@ -48,4 +48,6 @@ default: build
clean:
rm -rf Makefile $NGX_OBJS
.PHONY: default clean
END

View File

@ -215,4 +215,6 @@ upgrade:
test -f $NGX_PID_PATH.oldbin
kill -QUIT \`cat $NGX_PID_PATH.oldbin\`
.PHONY: build install modules upgrade
END