From: Mark Wooding Date: Wed, 10 Jun 2020 15:06:05 +0000 (+0100) Subject: Makefile: Make `all' be phony. and add empty `clean'. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/5e776d3c53307def3685336ea816db3c95394eb1?ds=sidebyside Makefile: Make `all' be phony. and add empty `clean'. --- diff --git a/Makefile b/Makefile index 5af43c2..0536c5d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,11 @@ ## -*-makefile-*- all:: +.PHONY: all + +clean:: +.PHONY: clean + .SECONDEXPANSION: #sorry ###--------------------------------------------------------------------------