author | Todd Zullinger <tmz@pobox.com> | 2009-01-11 23:23:52 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-12 07:22:24 (UTC) |
commit | 4ac89ec8b4fe347ed6d2655a30b55f894021c173 (patch) (unidiff) | |
tree | fb28aba37620766acafa056e580dc06a068eed03 /Makefile | |
parent | 3796c2d8d21099007ea4b0572522003ceafb4eab (diff) | |
download | cgit-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>
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,16 +1,17 @@ | |||
1 | CGIT_VERSION = v0.8.1 | 1 | CGIT_VERSION = v0.8.1 |
2 | CGIT_SCRIPT_NAME = cgit.cgi | 2 | CGIT_SCRIPT_NAME = cgit.cgi |
3 | CGIT_SCRIPT_PATH = /var/www/htdocs/cgit | 3 | CGIT_SCRIPT_PATH = /var/www/htdocs/cgit |
4 | CGIT_CONFIG = /etc/cgitrc | 4 | CGIT_CONFIG = /etc/cgitrc |
5 | CACHE_ROOT = /var/cache/cgit | 5 | 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 | # |
12 | # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). | 13 | # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). |
13 | # | 14 | # |
14 | 15 | ||
15 | #-include config.mak | 16 | #-include config.mak |
16 | 17 | ||
@@ -130,20 +131,20 @@ cgit.o: VERSION | |||
130 | libgit: | 131 | libgit: |
131 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a | 132 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a |
132 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a | 133 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a |
133 | 134 | ||
134 | test: all | 135 | 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) |
145 | rm -f $(CGIT_SCRIPT_PATH)/cgit.css | 146 | rm -f $(CGIT_SCRIPT_PATH)/cgit.css |
146 | rm -f $(CGIT_SCRIPT_PATH)/cgit.png | 147 | rm -f $(CGIT_SCRIPT_PATH)/cgit.png |
147 | 148 | ||
148 | clean: | 149 | clean: |
149 | rm -f cgit VERSION *.o *.d | 150 | rm -f cgit VERSION *.o *.d |