forked from Rezel/rezelator
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
273 B
10 lines
273 B
.PHONY: setup build
|
|
|
|
all: setup build
|
|
|
|
build:
|
|
bash -c 'source ${PWD}/.venv/bin/activate && python3 -m builder'
|
|
|
|
setup:
|
|
python3 -m venv .venv
|
|
bash -c 'source ${PWD}/.venv/bin/activate && python3 -m pip install --upgrade pip && python3 -m pip install -r requirements.txt'
|
|
|