author | Lars Hjemli <hjemli@gmail.com> | 2007-09-04 09:54:37 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-09-04 09:54:37 (UTC) |
commit | 96a24212fda0047a7cd5d79cc43377ce24c1f85c (patch) (side-by-side diff) | |
tree | 72bb3fc23ecf9a3d23e59723862781a711369420 | |
parent | bd8e8a3d709204646a4f1ee9d81cce1cdd912de9 (diff) | |
download | cgit-0.6.zip cgit-0.6.tar.gz cgit-0.6.tar.bz2 |
cgit v0.6v0.6
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,31 +1,31 @@ -CGIT_VERSION = v0.5 +CGIT_VERSION = v0.6 CGIT_SCRIPT_NAME = cgit.cgi CGIT_SCRIPT_PATH = /var/www/htdocs/cgit CGIT_CONFIG = /etc/cgitrc CACHE_ROOT = /var/cache/cgit SHA1_HEADER = <openssl/sha.h> -GIT_VER = 1.5.2 +GIT_VER = 1.5.3 GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 # # Let the user override the above settings. # -include cgit.conf EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ ui-summary.o ui-log.o ui-tree.o ui-commit.o ui-diff.o \ ui-snapshot.o ui-blob.o ui-tag.o .PHONY: all git install clean distclean force-version get-git all: cgit git VERSION: force-version @./gen-version.sh "$(CGIT_VERSION)" -include VERSION CFLAGS += -g -Wall -Igit |