Add a couple more targets to the makefile
This commit is contained in:
parent
523c9ff0d1
commit
c4f61de3fe
1 changed files with 8 additions and 0 deletions
8
Makefile
8
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue