about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorLars Hjemli2007-01-17 01:13:05 +0100
committerLars Hjemli2007-01-17 01:13:05 +0100
commit447025f62ccbbb6e038d42009368e28f3e162460 (patch)
tree3416bbab45fd5addc10f31905d0a99c32f00bc08 /Makefile
parentExtend repo summary with tag list (diff)
downloadcgit-447025f62ccbbb6e038d42009368e28f3e162460.tar.gz
cgit-447025f62ccbbb6e038d42009368e28f3e162460.zip
Enable building with debuginfo
Add -g to CFLAGS when running make with DEBUG=1

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile')
-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
@@ -10,6 +10,10 @@ OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.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