diff options
author | Jakub Narebski <jnareb@gmail.com> | 2010-05-01 22:36:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-01 15:42:19 -0700 |
commit | 152d94348f6a38eb7cb5f4af8397f51ba06ddffb (patch) | |
tree | e354dc63b04558c944bfef523fd6874497a9881f /Makefile | |
parent | 8515392f5d4c5a36a0f9e4a73068f7106d7f4638 (diff) | |
download | git-152d94348f6a38eb7cb5f4af8397f51ba06ddffb.tar.gz |
gitweb: Create install target for gitweb in Makefile
Installing gitweb is now as easy as
# make gitwebdir=/var/www/cgi-bin gitweb-install ;# as root
The gitweb/INSTALL file was updated accordingly, to make use of this
new target.
Fix shell quoting, i.e. setting bindir_SQ etc., in gitweb/Makefile.
Those variables were not used previously.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2004,6 +2004,9 @@ endif done; } && \ ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X" +install-gitweb: + $(MAKE) -C gitweb install + install-doc: $(MAKE) -C Documentation install |