diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-01-17 01:13:05 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-01-17 01:13:05 +0100 |
commit | 447025f62ccbbb6e038d42009368e28f3e162460 (patch) | |
tree | 3416bbab45fd5addc10f31905d0a99c32f00bc08 | |
parent | Extend repo summary with tag list (diff) | |
download | cgit-pink-447025f62ccbbb6e038d42009368e28f3e162460.tar.gz cgit-pink-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 '')
-rw-r--r-- | Makefile | 4 |
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 \ CFLAGS += -Wall +ifdef DEBUG + CFLAGS += -g +endif + all: cgit install: all clean-cache |