summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3c0dd5f..899daf2 100644
--- a/Makefile
+++ b/Makefile
@@ -27,46 +27,46 @@ VERSION: force-version
27 @./gen-version.sh "$(CGIT_VERSION)" 27 @./gen-version.sh "$(CGIT_VERSION)"
28-include VERSION 28-include VERSION
29 29
30 30
31CFLAGS += -g -Wall -Igit 31CFLAGS += -g -Wall -Igit
32CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' 32CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
33CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' 33CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
34CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 34CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
35CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 35CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
36CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 36CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
37 37
38 38
39cgit: cgit.c $(OBJECTS) 39cgit: cgit.c $(OBJECTS)
40 $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS) 40 $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS)
41 41
42$(OBJECTS): cgit.h git/xdiff/lib.a git/libgit.a VERSION 42$(OBJECTS): cgit.h git/xdiff/lib.a git/libgit.a VERSION
43 43
44git/xdiff/lib.a: | git 44git/xdiff/lib.a: | git
45 45
46git/libgit.a: | git 46git/libgit.a: | git
47 47
48git: 48git:
49 cd git && $(MAKE) xdiff/lib.a 49 cd git && $(MAKE) xdiff/lib.a
50 cd git && $(MAKE) libgit.a 50 cd git && $(MAKE) libgit.a
51 51
52install: all 52install: all
53 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 53 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
54 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 54 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
55 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 55 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
56 rm -rf $(DESTDIR)$(CACHE_ROOT)/* 56 rm -rf $(DESTDIR)$(CACHE_ROOT)/*
57 57
58uninstall: 58uninstall:
59 rm -f $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 59 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
60 rm -f $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 60 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
61 rm -rf $(DESTDIR)$(CACHE_ROOT) 61 rm -rf $(CACHE_ROOT)
62 62
63clean: 63clean:
64 rm -f cgit VERSION *.o 64 rm -f cgit VERSION *.o
65 cd git && $(MAKE) clean 65 cd git && $(MAKE) clean
66 66
67distclean: clean 67distclean: clean
68 git clean -d -x 68 git clean -d -x
69 cd git && git clean -d -x 69 cd git && git clean -d -x
70 70
71get-git: 71get-git:
72 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git 72 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git