diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-10 14:07:02 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-10 14:07:02 -0800 |
commit | b8acbe96ba23d7931d694bcbb4add02fa290158e (patch) | |
tree | d8444e5f2ab14064066a9eb7760ae4f5dcef8014 /Makefile | |
parent | 500c62bd380e52e13972f4c2971346d9ab1e63ed (diff) |
Makefile - default to Debug for make target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |