From 0ab270b9232952ef51ddbf3e2e37a11cb5f2dfa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bl=C3=A4se?= Date: Fri, 26 Jul 2019 17:34:19 +0200 Subject: [PATCH] Makefile: Make all targets phony None of the Makefile targets create a file called like the target. Therefore all targets are declared to be phony. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8be07b6d..99a89fe6 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.PHONY: all clean install dist check + all: ninja -C builddir