diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-10-18 14:19:07 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-18 14:19:07 +0900 |
commit | f77196e3655d974bb281f511e7f89423870e988e (patch) | |
tree | 6193855ae32ae79973adb981c631c4b5d635cac8 | |
parent | 7c9375db0e3063cf2f20970ff9e36e720f823181 (diff) | |
parent | 74f1bd912be9a6c72a2fe23a3a336dec66f29d83 (diff) | |
download | git-f77196e3655d974bb281f511e7f89423870e988e.tar.gz git-f77196e3655d974bb281f511e7f89423870e988e.tar.xz |
Merge branch 'dw/diff-highlight-makefile-fix' into maint
Build clean-up.
* dw/diff-highlight-makefile-fix:
diff-highlight: add clean target to Makefile
-rw-r--r-- | contrib/diff-highlight/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/diff-highlight/Makefile b/contrib/diff-highlight/Makefile index fbf5c5824..f2be7cc92 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 |