Skip to content

Commit c0addc9

Browse files
author
Ivan Dlugos
committed
make build the default make target
1 parent 44990f2 commit c0addc9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ export PATH := ${VIRTUAL_ENV}/bin:${PATH}
44

55
################################
66

7+
build: ${VENV} clean
8+
python3 setup.py bdist_wheel
9+
ls -lh dist
10+
711
${VENV}: ${VENV}/bin/activate
812

913
${VENV}/bin/activate: requirements.txt
@@ -20,10 +24,6 @@ init: ${VENV}
2024
test: ${VENV}
2125
python3 -m pytest -s
2226

23-
build: ${VENV} clean
24-
python3 setup.py bdist_wheel
25-
ls -lh dist
26-
2727
clean:
2828
rm -rf build/
2929
rm -rf dist/

0 commit comments

Comments
 (0)