summaryrefslogtreecommitdiffabout
path: root/Makefile
authorTodd Zullinger <tmz@pobox.com>2009-01-11 23:23:52 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-01-12 07:22:24 (UTC)
commit4ac89ec8b4fe347ed6d2655a30b55f894021c173 (patch) (unidiff)
treefb28aba37620766acafa056e580dc06a068eed03 /Makefile
parent3796c2d8d21099007ea4b0572522003ceafb4eab (diff)
downloadcgit-4ac89ec8b4fe347ed6d2655a30b55f894021c173.zip
cgit-4ac89ec8b4fe347ed6d2655a30b55f894021c173.tar.gz
cgit-4ac89ec8b4fe347ed6d2655a30b55f894021c173.tar.bz2
Makefile: add INSTALL var to set install command
This also explicitly sets the modes for installed files (755 for the .cgi, 644 for the .css and .png). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a95a622..9457940 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,7 @@ CACHE_ROOT = /var/cache/cgit
6SHA1_HEADER = <openssl/sha.h> 6SHA1_HEADER = <openssl/sha.h>
7GIT_VER = 1.6.0.3 7GIT_VER = 1.6.0.3
8GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 8GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
9INSTALL = install
9 10
10# Define NO_STRCASESTR if you don't have strcasestr. 11# Define NO_STRCASESTR if you don't have strcasestr.
11# 12#
@@ -135,10 +136,10 @@ test: all
135 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all 136 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
136 137
137install: all 138install: all
138 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 139 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH)
139 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 140 $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
140 install -m 0644 cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 141 $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
141 install -m 0644 cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png 142 $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
142 143
143uninstall: 144uninstall:
144 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 145 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)