From 9a92991bf1201b323a79f10e5f2c837467cae6cc Mon Sep 17 00:00:00 2001 From: Ruthenic Date: Thu, 21 Oct 2021 14:05:13 -0400 Subject: [PATCH] Makefile: make targets phony. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 069abfe..92c64d9 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ PROGS ?= arch basename cat chroot cp ls pwd rm uname whoami yes EXCLUDE_PROGS ?= rm DESTDIR ?= / +.PHONY: all debug clean build-release install all: @mkdir -p bin all: ${PROGS} @@ -34,3 +35,4 @@ install: @for prog in ${EXCLUDE_PROGS}; do \ mv /tmp/$$prog bin; \ done +