- Commit
- b8acbe96ba23d7931d694bcbb4add02fa290158e
- Parent
- 500c62bd380e52e13972f4c2971346d9ab1e63ed
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Makefile - default to Debug for make target
My personal build of CMark ✏️
Makefile - default to Debug for make target
1 file changed, 2 insertions, 2 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | Makefile | 4 | 2 | 2 |
diff --git 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)