author | Lars Hjemli <hjemli@gmail.com> | 2008-08-05 23:20:24 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 09:21:09 (UTC) |
commit | 02a545e63454530c1639014d3239c14ced2022c6 (patch) (unidiff) | |
tree | da4c89a94b117d936f2eeb486c9dedf192e6746e /Makefile | |
parent | 0f0ab148c6d444316af10e6b4c7a60630fed45d3 (diff) | |
download | cgit-02a545e63454530c1639014d3239c14ced2022c6.zip cgit-02a545e63454530c1639014d3239c14ced2022c6.tar.gz cgit-02a545e63454530c1639014d3239c14ced2022c6.tar.bz2 |
Add support for cloning over http
This patch implements basic support for cloning over http, based on the
work on git-http-backend by Shawn O. Pearce.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,124 +1,125 @@ | |||
1 | CGIT_VERSION = v0.7.2 | 1 | CGIT_VERSION = v0.7.2 |
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.5.6 | 7 | GIT_VER = 1.5.6 |
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 | 9 | ||
10 | # | 10 | # |
11 | # Let the user override the above settings. | 11 | # Let the user override the above settings. |
12 | # | 12 | # |
13 | -include cgit.conf | 13 | -include cgit.conf |
14 | 14 | ||
15 | # | 15 | # |
16 | # Define a way to invoke make in subdirs quietly, shamelessly ripped | 16 | # Define a way to invoke make in subdirs quietly, shamelessly ripped |
17 | # from git.git | 17 | # from git.git |
18 | # | 18 | # |
19 | QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir | 19 | QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir |
20 | QUIET_SUBDIR1 = | 20 | QUIET_SUBDIR1 = |
21 | 21 | ||
22 | ifneq ($(findstring $(MAKEFLAGS),w),w) | 22 | ifneq ($(findstring $(MAKEFLAGS),w),w) |
23 | PRINT_DIR = --no-print-directory | 23 | PRINT_DIR = --no-print-directory |
24 | else # "make -w" | 24 | else # "make -w" |
25 | NO_SUBDIR = : | 25 | NO_SUBDIR = : |
26 | endif | 26 | endif |
27 | 27 | ||
28 | ifndef V | 28 | ifndef V |
29 | QUIET_CC = @echo ' ' CC $@; | 29 | QUIET_CC = @echo ' ' CC $@; |
30 | QUIET_MM = @echo ' ' MM $@; | 30 | QUIET_MM = @echo ' ' MM $@; |
31 | QUIET_SUBDIR0 = +@subdir= | 31 | QUIET_SUBDIR0 = +@subdir= |
32 | QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ | 32 | QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ |
33 | $(MAKE) $(PRINT_DIR) -C $$subdir | 33 | $(MAKE) $(PRINT_DIR) -C $$subdir |
34 | endif | 34 | endif |
35 | 35 | ||
36 | # | 36 | # |
37 | # Define a pattern rule for automatic dependency building | 37 | # Define a pattern rule for automatic dependency building |
38 | # | 38 | # |
39 | %.d: %.c | 39 | %.d: %.c |
40 | $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@ | 40 | $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@ |
41 | 41 | ||
42 | # | 42 | # |
43 | # Define a pattern rule for silent object building | 43 | # Define a pattern rule for silent object building |
44 | # | 44 | # |
45 | %.o: %.c | 45 | %.o: %.c |
46 | $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< | 46 | $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< |
47 | 47 | ||
48 | 48 | ||
49 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto | 49 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
50 | OBJECTS = | 50 | OBJECTS = |
51 | OBJECTS += cache.o | 51 | OBJECTS += cache.o |
52 | OBJECTS += cgit.o | 52 | OBJECTS += cgit.o |
53 | OBJECTS += cmd.o | 53 | OBJECTS += cmd.o |
54 | OBJECTS += configfile.o | 54 | OBJECTS += configfile.o |
55 | OBJECTS += html.o | 55 | OBJECTS += html.o |
56 | OBJECTS += parsing.o | 56 | OBJECTS += parsing.o |
57 | OBJECTS += shared.o | 57 | OBJECTS += shared.o |
58 | OBJECTS += ui-blob.o | 58 | OBJECTS += ui-blob.o |
59 | OBJECTS += ui-clone.o | ||
59 | OBJECTS += ui-commit.o | 60 | OBJECTS += ui-commit.o |
60 | OBJECTS += ui-diff.o | 61 | OBJECTS += ui-diff.o |
61 | OBJECTS += ui-log.o | 62 | OBJECTS += ui-log.o |
62 | OBJECTS += ui-patch.o | 63 | OBJECTS += ui-patch.o |
63 | OBJECTS += ui-refs.o | 64 | OBJECTS += ui-refs.o |
64 | OBJECTS += ui-repolist.o | 65 | OBJECTS += ui-repolist.o |
65 | OBJECTS += ui-shared.o | 66 | OBJECTS += ui-shared.o |
66 | OBJECTS += ui-snapshot.o | 67 | OBJECTS += ui-snapshot.o |
67 | OBJECTS += ui-summary.o | 68 | OBJECTS += ui-summary.o |
68 | OBJECTS += ui-tag.o | 69 | OBJECTS += ui-tag.o |
69 | OBJECTS += ui-tree.o | 70 | OBJECTS += ui-tree.o |
70 | 71 | ||
71 | ifdef NEEDS_LIBICONV | 72 | ifdef NEEDS_LIBICONV |
72 | EXTLIBS += -liconv | 73 | EXTLIBS += -liconv |
73 | endif | 74 | endif |
74 | 75 | ||
75 | 76 | ||
76 | .PHONY: all git test install uninstall clean force-version get-git | 77 | .PHONY: all git test install uninstall clean force-version get-git |
77 | 78 | ||
78 | all: cgit | 79 | all: cgit |
79 | 80 | ||
80 | VERSION: force-version | 81 | VERSION: force-version |
81 | @./gen-version.sh "$(CGIT_VERSION)" | 82 | @./gen-version.sh "$(CGIT_VERSION)" |
82 | -include VERSION | 83 | -include VERSION |
83 | 84 | ||
84 | 85 | ||
85 | CFLAGS += -g -Wall -Igit | 86 | CFLAGS += -g -Wall -Igit |
86 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' | 87 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' |
87 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' | 88 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
88 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' | 89 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
89 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' | 90 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' |
90 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' | 91 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
91 | 92 | ||
92 | 93 | ||
93 | cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a | 94 | cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a |
94 | $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 95 | $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
95 | 96 | ||
96 | cgit.o: VERSION | 97 | cgit.o: VERSION |
97 | 98 | ||
98 | -include $(OBJECTS:.o=.d) | 99 | -include $(OBJECTS:.o=.d) |
99 | 100 | ||
100 | git/libgit.a: git | 101 | git/libgit.a: git |
101 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | 102 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a |
102 | 103 | ||
103 | git/xdiff/lib.a: git | 104 | git/xdiff/lib.a: git |
104 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a | 105 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a |
105 | 106 | ||
106 | test: all | 107 | test: all |
107 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 108 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
108 | 109 | ||
109 | install: all | 110 | install: all |
110 | mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) | 111 | mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) |
111 | install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 112 | install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
112 | install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css | 113 | install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css |
113 | install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png | 114 | install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png |
114 | 115 | ||
115 | uninstall: | 116 | uninstall: |
116 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 117 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
117 | rm -f $(CGIT_SCRIPT_PATH)/cgit.css | 118 | rm -f $(CGIT_SCRIPT_PATH)/cgit.css |
118 | rm -f $(CGIT_SCRIPT_PATH)/cgit.png | 119 | rm -f $(CGIT_SCRIPT_PATH)/cgit.png |
119 | 120 | ||
120 | clean: | 121 | clean: |
121 | rm -f cgit VERSION *.o *.d | 122 | rm -f cgit VERSION *.o *.d |
122 | 123 | ||
123 | get-git: | 124 | get-git: |
124 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git | 125 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git |