summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-09-03 20:42:54 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-09-03 20:49:19 (UTC)
commit95eaf2735efffae533ae3b4133bc01b6eb303d5a (patch) (unidiff)
tree0e3a3b53fc643c2b7809eadd85bbd90f9257040a
parente8920b52629911f92dbbecdb1d7675760e7a781e (diff)
downloadcgit-95eaf2735efffae533ae3b4133bc01b6eb303d5a.zip
cgit-95eaf2735efffae533ae3b4133bc01b6eb303d5a.tar.gz
cgit-95eaf2735efffae533ae3b4133bc01b6eb303d5a.tar.bz2
Makefile: add target "get-git"
The new target downloads a suitable git.git tarball from kernel.org and unpacks it in the git directory. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 12fd652..fcbe3e4 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,10 @@ CGIT_SCRIPT_NAME = cgit.cgi
3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit 3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4CGIT_CONFIG = /etc/cgitrc 4CGIT_CONFIG = /etc/cgitrc
5CACHE_ROOT = /var/cache/cgit 5CACHE_ROOT = /var/cache/cgit
6SHA1_HEADER = <openssl/sha.h> 6SHA1_HEADER = <openssl/sha.h>
7GIT_VER = 1.5.2
8GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
7 9
8# 10#
9# Let the user override the above settings. 11# Let the user override the above settings.
10# 12#
@@ -16,9 +18,9 @@ OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
16 ui-summary.o ui-log.o ui-tree.o ui-commit.o ui-diff.o \ 18 ui-summary.o ui-log.o ui-tree.o ui-commit.o ui-diff.o \
17 ui-snapshot.o ui-blob.o ui-tag.o 19 ui-snapshot.o ui-blob.o ui-tag.o
18 20
19 21
20.PHONY: all git install clean distclean force-version 22.PHONY: all git install clean distclean force-version get-git
21 23
22all: cgit git 24all: cgit git
23 25
24VERSION: force-version 26VERSION: force-version
@@ -63,4 +65,7 @@ clean:
63 65
64distclean: clean 66distclean: clean
65 git clean -d -x 67 git clean -d -x
66 cd git && git clean -d -x 68 cd git && git clean -d -x
69
70get-git:
71 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git