From: Karl O. Pinc Date: Sat, 22 Jun 2024 03:21:06 +0000 (-0500) Subject: Use immediate assignments X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=fcfa5da003cb6ff28d0ac7ae0f79bb33c14a2e24;p=pgwui_upload_core Use immediate assignments --- diff --git a/Makefile_pgwui.mk b/Makefile_pgwui.mk index 90c6660..1cc26bc 100644 --- a/Makefile_pgwui.mk +++ b/Makefile_pgwui.mk @@ -29,22 +29,22 @@ # This works on debian... -PYTHON_EXE=python3 -VIRTUALENV=virtualenv -p ${PYTHON_EXE} +PYTHON_EXE := python3 +VIRTUALENV := $(PYTHON_EXE) -m venv # (Optional) where pyenv is installed (git clone somepath) # For running tox against multiple python versions PYENV_INSTALLATION := $(HOME)/.pyenv PYENV_BIN := $(PYENV_INSTALLATION)/bin TARGETS = -EXTRA_TARGETS = README.html -SETUPTOOLS_STUFF = build dist src/${PGWUI_COMPONENT}.egg-info -PYTEST_STUFF = .cache \ +EXTRA_TARGETS := README.html +SETUPTOOLS_STUFF := build dist src/${PGWUI_COMPONENT}.egg-info +PYTEST_STUFF := .cache \ src/${PGWUI_COMPONENT}/__pycache__ \ src/${PGWUI_COMPONENT}/views/__pycache__ \ tests/__pycache__ tests/views/__pycache__ -COVERAGE_STUFF = .coverage -TOX_STUFF = .tox +COVERAGE_STUFF := .coverage +TOX_STUFF := .tox include help.mk