mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 01:05:48 +02:00
Add a --verbose build flag
This commit is contained in:
17
Makefile
17
Makefile
@@ -1,16 +1,23 @@
|
||||
ifdef V
|
||||
VVAL=--verbose
|
||||
endif
|
||||
ifdef VERBOSE
|
||||
VVAL=--verbose
|
||||
endif
|
||||
|
||||
all:
|
||||
python3 setup.py
|
||||
python3 setup.py $(VVAL)
|
||||
|
||||
test:
|
||||
python3 setup.py test
|
||||
python3 setup.py $(VVAL) test
|
||||
|
||||
clean:
|
||||
python3 setup.py clean
|
||||
python3 setup.py $(VVAL) clean
|
||||
|
||||
# A debug build
|
||||
debug:
|
||||
python3 setup.py build --debug
|
||||
python3 setup.py build $(VVAL) --debug
|
||||
|
||||
# Build with the ASAN and UBSAN sanitizers
|
||||
asan:
|
||||
python3 setup.py build --debug --sanitize
|
||||
python3 setup.py build $(VVAL) --debug --sanitize
|
||||
|
||||
Reference in New Issue
Block a user