10 lines
110 B
Makefile
10 lines
110 B
Makefile
all:
|
|
python3 setup.py build
|
|
|
|
clean:
|
|
rm -rf dist build py3x.egg-info
|
|
|
|
zip:
|
|
zip -r py3x * -i *.py py3x/*.py
|
|
|