From 74f1bd912be9a6c72a2fe23a3a336dec66f29d83 Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Tue, 29 Aug 2017 12:23:11 +0100 Subject: [PATCH] diff-highlight: add clean target to Makefile Now that `make` produces a file, we should have a clean target to remove it. Signed-off-by: Daniel Watkins Signed-off-by: Junio C Hamano --- contrib/diff-highlight/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/diff-highlight/Makefile b/contrib/diff-highlight/Makefile index fbf5c58249..f2be7cc924 100644 --- a/contrib/diff-highlight/Makefile +++ b/contrib/diff-highlight/Makefile @@ -17,4 +17,7 @@ shebang.perl: FORCE test: all $(MAKE) -C t +clean: + $(RM) diff-highlight + .PHONY: FORCE -- 2.11.4.GIT