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>

Daniel Watkins committed Aug 29, 2017 at 12:23 UTC 74f1bd912be9a6c72a2fe23a3a336dec66f29d83
1 file changed +3
contrib/diff-highlight/Makefile
+3
@@ -17,4 +17,7 @@ shebang.perl: FORCE
17 test: all
18 $(MAKE) -C t
19
20 +clean:
21 + $(RM) diff-highlight
22 +
23 .PHONY: FORCE