diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2011-10-25 19:15:20 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-26 23:03:58 +0200 |
commit | a80b263e37fd06f3f6335c07493541070631d10e (patch) | |
tree | 816a0224a6392d100df89c31e6e93aed0e597a4d /gitweb/Makefile | |
parent | Git 1.7.6 (diff) | |
download | git-a80b263e37fd06f3f6335c07493541070631d10e.tar.xz git-a80b263e37fd06f3f6335c07493541070631d10e.zip |
gitweb/Makefile: Remove static/gitweb.js in the clean target
Since 9a86dd5 (gitweb: Split JavaScript for maintability, combining on
build, 2011-04-28), static/gitweb.js has been a build product that should
be cleaned upon "make clean".
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | gitweb/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gitweb/Makefile b/gitweb/Makefile index 5d20515fba..c360284c3f 100644 --- a/gitweb/Makefile +++ b/gitweb/Makefile @@ -183,7 +183,9 @@ install: all ### Cleaning rules clean: - $(RM) gitweb.cgi static/gitweb.min.js static/gitweb.min.css GITWEB-BUILD-OPTIONS + $(RM) gitweb.cgi static/gitweb.js \ + static/gitweb.min.js static/gitweb.min.css \ + GITWEB-BUILD-OPTIONS .PHONY: all clean install test test-installed .FORCE-GIT-VERSION-FILE FORCE |