mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-31 23:38:20 -04:00
🚀 Makefiles init
This commit is contained in:
parent
1b4fdce0b5
commit
72999e89ba
3 changed files with 65 additions and 0 deletions
15
builder/Makefile
Normal file
15
builder/Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue