From b8acbe96ba23d7931d694bcbb4add02fa290158e Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 10 Nov 2014 14:07:02 -0800 Subject: Makefile - default to Debug for make target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3