summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-07-22 17:58:37 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-07-22 17:58:37 (UTC)
commita75968df103a938656599e0d2d9fd1ab4de5ea8a (patch) (unidiff)
tree878dfe5cc2a000c6f1dd6ae68f284d4b2559a2f4
parentbb7485e8d7932ba04a94714bfe6a86a1e323435c (diff)
downloadcgit-a75968df103a938656599e0d2d9fd1ab4de5ea8a.zip
cgit-a75968df103a938656599e0d2d9fd1ab4de5ea8a.tar.gz
cgit-a75968df103a938656599e0d2d9fd1ab4de5ea8a.tar.bz2
Makefile: do not touch the git objects with `make clean`
I've been avoiding `make clean` for a long time due to its eagerness to kill all the git objectfiles. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e807d1e..a1f961b 100644
--- a/Makefile
+++ b/Makefile
@@ -76,59 +76,58 @@ endif
76.PHONY: all git test install clean distclean emptycache force-version get-git 76.PHONY: all git test install clean distclean emptycache force-version get-git
77 77
78all: cgit 78all: cgit
79 79
80VERSION: force-version 80VERSION: force-version
81 @./gen-version.sh "$(CGIT_VERSION)" 81 @./gen-version.sh "$(CGIT_VERSION)"
82-include VERSION 82-include VERSION
83 83
84 84
85CFLAGS += -g -Wall -Igit 85CFLAGS += -g -Wall -Igit
86CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' 86CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
87CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' 87CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
88CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 88CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
89CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 89CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
90CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 90CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
91 91
92 92
93cgit: $(OBJECTS) 93cgit: $(OBJECTS)
94 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 94 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
95 95
96$(OBJECTS): | git/xdiff/lib.a git/libgit.a 96$(OBJECTS): | git/xdiff/lib.a git/libgit.a
97 97
98cgit.o: VERSION 98cgit.o: VERSION
99 99
100-include $(OBJECTS:.o=.d) 100-include $(OBJECTS:.o=.d)
101 101
102git/xdiff/lib.a, git/libgit.a: git 102git/xdiff/lib.a, git/libgit.a: git
103 103
104git: 104git:
105 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a 105 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a
106 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a 106 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a
107 107
108test: all 108test: all
109 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all 109 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
110 110
111install: all 111install: all
112 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 112 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
113 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 113 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
114 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 114 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
115 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png 115 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
116 116
117uninstall: 117uninstall:
118 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 118 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
119 rm -f $(CGIT_SCRIPT_PATH)/cgit.css 119 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
120 rm -f $(CGIT_SCRIPT_PATH)/cgit.png 120 rm -f $(CGIT_SCRIPT_PATH)/cgit.png
121 121
122clean: 122clean:
123 rm -f cgit VERSION *.o *.d 123 rm -f cgit VERSION *.o *.d
124 cd git && $(MAKE) clean
125 124
126distclean: clean 125distclean: clean
127 git clean -d -x 126 git clean -d -x
128 cd git && git clean -d -x 127 cd git && git clean -d -x
129 128
130emptycache: 129emptycache:
131 rm -rf $(DESTDIR)$(CACHE_ROOT)/* 130 rm -rf $(DESTDIR)$(CACHE_ROOT)/*
132 131
133get-git: 132get-git:
134 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git 133 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git