Use verbose flag for pip install

* Ensures when developing that compilation warnings are visible
* Provides feedback that compilation has occured.
This commit is contained in:
Eric Soroos 2022-11-03 21:40:08 +01:00
parent 7854f6c61c
commit d93b9919e3

View File

@ -53,12 +53,12 @@ inplace: clean
.PHONY: install .PHONY: install
install: install:
python3 -m pip install . python3 -m pip -v install .
python3 selftest.py python3 selftest.py
.PHONY: install-coverage .PHONY: install-coverage
install-coverage: install-coverage:
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 -m pip install --global-option="build_ext" . CFLAGS="-coverage -Werror=implicit-function-declaration" python3 -m pip -v install --global-option="build_ext" .
python3 selftest.py python3 selftest.py
.PHONY: debug .PHONY: debug