mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-27 21:44:23 -04:00
15 lines
No EOL
276 B
Makefile
15 lines
No EOL
276 B
Makefile
|
|
all: setup build clean
|
|
|
|
.PHONY: all
|
|
|
|
clean:
|
|
rm -rf applbuild.egg-info build dist
|
|
find -iname "*.pyc" -delete
|
|
|
|
setup: clean setup.py
|
|
test -d venv || virtualenv venv
|
|
. venv/bin/activate; python3 setup.py install
|
|
|
|
build: setup build.py
|
|
. venv/bin/activate; python3 build.py
|