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) (side-by-side diff) | |
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 @@ CGIT_VERSION = 0.2 prefix = /var/www/htdocs/cgit -gitsrc = ../git +gitsrc = git SHA1_HEADER = <openssl/sha.h> CACHE_ROOT = /var/cache/cgit EXTLIBS = $(gitsrc)/libgit.a $(gitsrc)/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-view.o ui-tree.o ui-commit.o ui-diff.o \ ui-snapshot.o ui-blob.o CFLAGS += -Wall ifdef DEBUG CFLAGS += -g endif CFLAGS += -I$(gitsrc) -DSHA1_HEADER='$(SHA1_HEADER)' all: cgit install: all clean-cache mkdir -p $(prefix) install cgit $(prefix)/cgit.cgi install cgit.css $(prefix)/cgit.css cgit: cgit.c cgit.h $(OBJECTS) $(gitsrc)/libgit.a $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ $(OBJECTS) $(EXTLIBS) $(OBJECTS): cgit.h $(gitsrc)/libgit.a: $(MAKE) -C $(gitsrc) .PHONY: clean clean: rm -f cgit *.o clean-cache: rm -rf $(CACHE_ROOT)/* diff --git a/git b/git new file mode 160000 +Subproject 9159afbfce955db86373dab95b5f8e31fb763da |