From: Ramsay Jones Date: Tue, 25 Oct 2011 17:15:20 +0000 (+0100) Subject: gitweb/Makefile: Remove static/gitweb.js in the clean target X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/76f96eed36acd357f20478c20a4ce19fae72a59b882aa1efaccd681d54290cd5?ds=sidebyside 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 Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 0a51dd6..e8408af 100644 --- a/Makefile +++ b/Makefile @@ -187,7 +187,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