From 09b44ca2cb0c9296bf9f272029f58696feef8307 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 5 Oct 2017 00:47:40 +0200 Subject: [PATCH] Makefile: add clean/PHONY --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 41f10ba40..30e38f308 100644 --- a/Makefile +++ b/Makefile @@ -6,3 +6,8 @@ build/vader: build: mkdir -p $@ + +clean: + $(RM) -r build + +.PHONY: clean test