diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2011-10-25 18:15:20 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-26 14:03:58 -0700 |
commit | a80b263e37fd06f3f6335c07493541070631d10e (patch) | |
tree | 816a0224a6392d100df89c31e6e93aed0e597a4d /gitweb | |
parent | f696543dad6c7ba27b0c4fab167a5687263a9ba0 (diff) | |
download | git-a80b263e37fd06f3f6335c07493541070631d10e.tar.gz git-a80b263e37fd06f3f6335c07493541070631d10e.tar.xz |
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 'gitweb')
-rw-r--r-- | gitweb/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gitweb/Makefile b/gitweb/Makefile index 5d20515fb..c360284c3 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 |