summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-01-17 00:13:05 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-01-17 00:13:05 (UTC)
commit447025f62ccbbb6e038d42009368e28f3e162460 (patch) (unidiff)
tree3416bbab45fd5addc10f31905d0a99c32f00bc08
parent23734c5a2b607dca2d634cafdc63202a687f26d3 (diff)
downloadcgit-447025f62ccbbb6e038d42009368e28f3e162460.zip
cgit-447025f62ccbbb6e038d42009368e28f3e162460.tar.gz
cgit-447025f62ccbbb6e038d42009368e28f3e162460.tar.bz2
Enable building with debuginfo
Add -g to CFLAGS when running make with DEBUG=1 Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c290c6f..a3e9b05 100644
--- a/Makefile
+++ b/Makefile
@@ -1,32 +1,36 @@
1CGIT_VERSION = 0.1 1CGIT_VERSION = 0.1
2 2
3INSTALL_BIN = /var/www/htdocs/cgit.cgi 3INSTALL_BIN = /var/www/htdocs/cgit.cgi
4INSTALL_CSS = /var/www/htdocs/cgit.css 4INSTALL_CSS = /var/www/htdocs/cgit.css
5CACHE_ROOT = /var/cache/cgit 5CACHE_ROOT = /var/cache/cgit
6 6
7EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto 7EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
8OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ 8OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
9 ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o 9 ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o
10 10
11CFLAGS += -Wall 11CFLAGS += -Wall
12 12
13ifdef DEBUG
14 CFLAGS += -g
15endif
16
13all: cgit 17all: cgit
14 18
15install: all clean-cache 19install: all clean-cache
16 install cgit $(INSTALL_BIN) 20 install cgit $(INSTALL_BIN)
17 install cgit.css $(INSTALL_CSS) 21 install cgit.css $(INSTALL_CSS)
18 22
19cgit: cgit.c cgit.h git.h $(OBJECTS) 23cgit: cgit.c cgit.h git.h $(OBJECTS)
20 $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ 24 $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
21 $(OBJECTS) $(EXTLIBS) 25 $(OBJECTS) $(EXTLIBS)
22 26
23$(OBJECTS): cgit.h git.h 27$(OBJECTS): cgit.h git.h
24 28
25ui-diff.o: xdiff.h 29ui-diff.o: xdiff.h
26 30
27.PHONY: clean 31.PHONY: clean
28clean: 32clean:
29 rm -f cgit *.o 33 rm -f cgit *.o
30 34
31clean-cache: 35clean-cache:
32 rm -rf $(CACHE_ROOT)/* 36 rm -rf $(CACHE_ROOT)/*