From c4f61de3fe195d47f3c7924322306edfdcea5b2e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 14 Nov 2017 09:48:59 +0530 Subject: [PATCH] Add a couple more targets to the makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index f2a0d85cd..cf990d446 100644 --- a/Makefile +++ b/Makefile @@ -6,3 +6,11 @@ test: clean: python3 setup.py clean + +# A debug build +debug: + python3 setup.py build --debug + +# Build with the ASAN and UBSAN sanitizers +asan: + python3 setup.py build --debug --sanitize