19 lines
221 B
Makefile
19 lines
221 B
Makefile
|
PYTHON=.venv/bin/python
|
||
|
PIP=.venv/bin/pip
|
||
|
|
||
|
all: build
|
||
|
|
||
|
ensure_env:
|
||
|
-@python3 -m venv .venv
|
||
|
|
||
|
build: ensure_env
|
||
|
$(PIP) install -e .
|
||
|
$(PIP) install build
|
||
|
$(PIP) install shed
|
||
|
$(PYTHON) -m shed
|
||
|
$(PYTHON) -m build
|
||
|
|
||
|
|
||
|
|
||
|
|