Add a couple more targets to the makefile

This commit is contained in:
Kovid Goyal 2017-11-14 09:48:59 +05:30
parent 523c9ff0d1
commit c4f61de3fe
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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