summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorDaniel Watkins <daniel@daniel-watkins.co.uk>2017-08-29 11:23:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-09-06 03:56:26 (GMT)
commit74f1bd912be9a6c72a2fe23a3a336dec66f29d83 (patch)
tree5be125b42fb2065f3acf7bce153a472da4110bc1 /contrib
parentedc74bc7f0c6884027e851ef09b2e0c9380dcd45 (diff)
downloadgit-74f1bd912be9a6c72a2fe23a3a336dec66f29d83.zip
git-74f1bd912be9a6c72a2fe23a3a336dec66f29d83.tar.gz
git-74f1bd912be9a6c72a2fe23a3a336dec66f29d83.tar.bz2
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 <daniel@daniel-watkins.co.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/diff-highlight/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/diff-highlight/Makefile b/contrib/diff-highlight/Makefile
index fbf5c58..f2be7cc 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