gmake_python_helpers

Helpers for using Python venv/pip-tools/black/pylama/... with GNU make
git clone https://ccx.te2000.cz/git/gmake_python_helpers
Log | Files | Refs | README

commit 1083eb0126561155b8cfab92500fe96d16fc33fd
parent d77be3b397a776ff28854e5672755f353a5e52b7
Author: Jan Pobrislo <ccx@te2000.cz>
Date:   Wed, 25 Jun 2025 02:21:16 +0000

Mark relevant targets as .PHONY

Diffstat:
MREADME | 2++
Mpip-tools.mk | 1+
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/README b/README @@ -60,3 +60,5 @@ doc/make.%: $(venv_dev)/.done $(MAKE) -C doc '$*' SPHINXBUILD=../$(venv_dev)/bin/sphinx-build doc: doc/make.html doc/make.man + +.PHONY: default doc doc/make.html doc/make.man diff --git a/pip-tools.mk b/pip-tools.mk @@ -8,6 +8,7 @@ venv_pip:=$(venv_base)/pip-tools-$(PYTHON_IMPL) py-requirements: $(python_requirements_targets) # updates all *-requirements.txt files py-wheels: $(python_wheel_targets) # builds wheels for all environments venv: $(python_venv_targets) # installs/updates and symlinks all virtual environments +.PHONY: py-requirements py-wheels venv # -- requirement file rule generator