summaryrefslogtreecommitdiffabout
path: root/Makefile
authorLars Hjemli <hjemli@gmail.com>2008-08-05 23:20:24 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-08-06 09:21:09 (UTC)
commit02a545e63454530c1639014d3239c14ced2022c6 (patch) (unidiff)
treeda4c89a94b117d936f2eeb486c9dedf192e6746e /Makefile
parent0f0ab148c6d444316af10e6b4c7a60630fed45d3 (diff)
downloadcgit-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>
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e1436a3..78aad10 100644
--- a/Makefile
+++ b/Makefile
@@ -35,48 +35,49 @@ 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
49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto 49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
50OBJECTS = 50OBJECTS =
51OBJECTS += cache.o 51OBJECTS += cache.o
52OBJECTS += cgit.o 52OBJECTS += cgit.o
53OBJECTS += cmd.o 53OBJECTS += cmd.o
54OBJECTS += configfile.o 54OBJECTS += configfile.o
55OBJECTS += html.o 55OBJECTS += html.o
56OBJECTS += parsing.o 56OBJECTS += parsing.o
57OBJECTS += shared.o 57OBJECTS += shared.o
58OBJECTS += ui-blob.o 58OBJECTS += ui-blob.o
59OBJECTS += ui-clone.o
59OBJECTS += ui-commit.o 60OBJECTS += ui-commit.o
60OBJECTS += ui-diff.o 61OBJECTS += ui-diff.o
61OBJECTS += ui-log.o 62OBJECTS += ui-log.o
62OBJECTS += ui-patch.o 63OBJECTS += ui-patch.o
63OBJECTS += ui-refs.o 64OBJECTS += ui-refs.o
64OBJECTS += ui-repolist.o 65OBJECTS += ui-repolist.o
65OBJECTS += ui-shared.o 66OBJECTS += ui-shared.o
66OBJECTS += ui-snapshot.o 67OBJECTS += ui-snapshot.o
67OBJECTS += ui-summary.o 68OBJECTS += ui-summary.o
68OBJECTS += ui-tag.o 69OBJECTS += ui-tag.o
69OBJECTS += ui-tree.o 70OBJECTS += ui-tree.o
70 71
71ifdef NEEDS_LIBICONV 72ifdef NEEDS_LIBICONV
72 EXTLIBS += -liconv 73 EXTLIBS += -liconv
73endif 74endif
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
78all: cgit 79all: cgit
79 80
80VERSION: force-version 81VERSION: force-version
81 @./gen-version.sh "$(CGIT_VERSION)" 82 @./gen-version.sh "$(CGIT_VERSION)"
82-include VERSION 83-include VERSION