diff options
author | Todd Zullinger | 2009-01-11 18:23:52 -0500 |
---|---|---|
committer | Lars Hjemli | 2009-01-12 08:22:24 +0100 |
commit | 4ac89ec8b4fe347ed6d2655a30b55f894021c173 (patch) | |
tree | fb28aba37620766acafa056e580dc06a068eed03 | |
parent | 3796c2d8d21099007ea4b0572522003ceafb4eab (diff) | |
download | cgit-4ac89ec8b4fe347ed6d2655a30b55f894021c173.tar.gz cgit-4ac89ec8b4fe347ed6d2655a30b55f894021c173.tar.bz2 cgit-4ac89ec8b4fe347ed6d2655a30b55f894021c173.zip |
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>
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -6,6 +6,7 @@ CACHE_ROOT = /var/cache/cgit | |||
6 | SHA1_HEADER = <openssl/sha.h> | 6 | SHA1_HEADER = <openssl/sha.h> |
7 | GIT_VER = 1.6.0.3 | 7 | GIT_VER = 1.6.0.3 |
8 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 | 8 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 |
9 | INSTALL = 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 | ||
137 | install: all | 138 | install: 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 | ||
143 | uninstall: | 144 | uninstall: |
144 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 145 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |