From f30c75c224eacceced56f789ff3e4cf2ad4df42a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Mon, 4 Jul 2016 13:50:08 +0200 Subject: [PATCH] Add clean rule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d6f584c..751db11 100644 --- a/Makefile +++ b/Makefile @@ -30,4 +30,7 @@ uninstall: -rm -- "$(DESTDIR)$(PREFIX)/bin/exa" -rmdir -- "$(DESTDIR)$(PREFIX)/bin" -.PHONY: install uninstall +clean: + -rm -rf target + +.PHONY: install uninstall clean