You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
292 B
10 lines
292 B
.PHONY: setup build
|
|
|
|
build: setup
|
|
bash -c 'source ${PWD}/.venv/bin/activate && python3 -m builder'
|
|
|
|
.venv:
|
|
python3 -m venv .venv
|
|
|
|
setup: .venv requirements.txt
|
|
bash -c 'source ${PWD}/.venv/bin/activate && python3 -m pip install --upgrade pip && python3 -m pip install -r requirements.txt'
|
|
|