summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-10 14:07:02 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-10 14:07:02 -0800
commitb8acbe96ba23d7931d694bcbb4add02fa290158e (patch)
treed8444e5f2ab14064066a9eb7760ae4f5dcef8014 /Makefile
parent500c62bd380e52e13972f4c2971346d9ab1e63ed (diff)
Makefile - default to Debug for make target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 23d498f..7ff9d10 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ SITE=_site
BUILDDIR=build
FUZZCHARS?=2000000 # for fuzztest
PROG?=$(BUILDDIR)/src/cmark
-BUILDTYPE?=Release
+BUILDTYPE?=Debug
.PHONY: all spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site check
@@ -15,7 +15,7 @@ all: check man/man1/cmark.1
mkdir -p $(BUILDDIR); cd build; cmake .. -DCMAKE_BUILD_TYPE=$(BUILDTYPE); make
install: check
- mkdir -p $(BUILDDIR); cd build; cmake .. -DCMAKE_BUILD_TYPE=$(BUILDTYPE); make install
+ mkdir -p $(BUILDDIR); cd build; cmake .. -DCMAKE_BUILD_TYPE=Release; make install
clean:
rm -rf $(BUILDDIR)