Skip to content

Commit

Permalink
Merge pull request #6713 from wiredfool/verbose_build
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 4, 2022
2 parents 7c00e79 + bbe9cc6 commit 86b4cb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -53,12 +53,12 @@ inplace: clean

.PHONY: install
install:
python3 -m pip install .
python3 -m pip -v install .
python3 selftest.py

.PHONY: 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

.PHONY: debug
Expand All @@ -67,7 +67,7 @@ debug:
# for our stuff, kills optimization, and redirects to dev null so we
# see any build failures.
make clean > /dev/null
CFLAGS='-g -O0' python3 -m pip install --global-option="build_ext" . > /dev/null
CFLAGS='-g -O0' python3 -m pip -v install --global-option="build_ext" . > /dev/null

.PHONY: release-test
release-test:
Expand Down

0 comments on commit 86b4cb6

Please sign in to comment.