author | Lars Hjemli <hjemli@gmail.com> | 2007-05-10 06:50:49 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-11 08:59:10 (UTC) |
commit | e743443811f5816f02a9ca67404613be97bfa615 (patch) (unidiff) | |
tree | 5c96d634975928499f89646d95a74b36004ad3d6 | |
parent | ca8eb8fc8f71ee0a40015c323619f776840b6503 (diff) | |
download | cgit-e743443811f5816f02a9ca67404613be97bfa615.zip cgit-e743443811f5816f02a9ca67404613be97bfa615.tar.gz cgit-e743443811f5816f02a9ca67404613be97bfa615.tar.bz2 |
Added git as a submodule
This commit adds the subdirectory 'git' as a submodule containing
the git git repository, but doesn't add support for automatically
cloning the submodule.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 2 | ||||
m--------- | git | 0 |
2 files changed, 1 insertions, 1 deletions
@@ -1,44 +1,44 @@ | |||
1 | CGIT_VERSION = 0.2 | 1 | CGIT_VERSION = 0.2 |
2 | 2 | ||
3 | prefix = /var/www/htdocs/cgit | 3 | prefix = /var/www/htdocs/cgit |
4 | gitsrc = ../git | 4 | gitsrc = git |
5 | 5 | ||
6 | SHA1_HEADER = <openssl/sha.h> | 6 | SHA1_HEADER = <openssl/sha.h> |
7 | 7 | ||
8 | CACHE_ROOT = /var/cache/cgit | 8 | CACHE_ROOT = /var/cache/cgit |
9 | EXTLIBS = $(gitsrc)/libgit.a $(gitsrc)/xdiff/lib.a -lz -lcrypto | 9 | EXTLIBS = $(gitsrc)/libgit.a $(gitsrc)/xdiff/lib.a -lz -lcrypto |
10 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ | 10 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
11 | ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \ | 11 | ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \ |
12 | ui-snapshot.o ui-blob.o | 12 | ui-snapshot.o ui-blob.o |
13 | 13 | ||
14 | CFLAGS += -Wall | 14 | CFLAGS += -Wall |
15 | 15 | ||
16 | ifdef DEBUG | 16 | ifdef DEBUG |
17 | CFLAGS += -g | 17 | CFLAGS += -g |
18 | endif | 18 | endif |
19 | 19 | ||
20 | CFLAGS += -I$(gitsrc) -DSHA1_HEADER='$(SHA1_HEADER)' | 20 | CFLAGS += -I$(gitsrc) -DSHA1_HEADER='$(SHA1_HEADER)' |
21 | 21 | ||
22 | all: cgit | 22 | all: cgit |
23 | 23 | ||
24 | install: all clean-cache | 24 | install: all clean-cache |
25 | mkdir -p $(prefix) | 25 | mkdir -p $(prefix) |
26 | install cgit $(prefix)/cgit.cgi | 26 | install cgit $(prefix)/cgit.cgi |
27 | install cgit.css $(prefix)/cgit.css | 27 | install cgit.css $(prefix)/cgit.css |
28 | 28 | ||
29 | cgit: cgit.c cgit.h $(OBJECTS) $(gitsrc)/libgit.a | 29 | cgit: cgit.c cgit.h $(OBJECTS) $(gitsrc)/libgit.a |
30 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ | 30 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
31 | $(OBJECTS) $(EXTLIBS) | 31 | $(OBJECTS) $(EXTLIBS) |
32 | 32 | ||
33 | $(OBJECTS): cgit.h | 33 | $(OBJECTS): cgit.h |
34 | 34 | ||
35 | $(gitsrc)/libgit.a: | 35 | $(gitsrc)/libgit.a: |
36 | $(MAKE) -C $(gitsrc) | 36 | $(MAKE) -C $(gitsrc) |
37 | 37 | ||
38 | 38 | ||
39 | .PHONY: clean | 39 | .PHONY: clean |
40 | clean: | 40 | clean: |
41 | rm -f cgit *.o | 41 | rm -f cgit *.o |
42 | 42 | ||
43 | clean-cache: | 43 | clean-cache: |
44 | rm -rf $(CACHE_ROOT)/* | 44 | rm -rf $(CACHE_ROOT)/* |
diff --git a/git b/git new file mode 160000 | |||
Subproject 9159afbfce955db86373dab95b5f8e31fb763da | |||