2012-12-09 18:05:04 +01:00
|
|
|
SETUP = python3 setup.py
|
|
|
|
|
|
|
|
.PHONY: default clean build sdist bdist bdist_egg install release
|
|
|
|
|
|
|
|
default: build sdist bdist bdist_egg
|
2012-08-31 17:20:38 +02:00
|
|
|
|
|
|
|
clean:
|
2012-12-09 18:05:04 +01:00
|
|
|
zenity --question
|
2012-09-01 00:55:45 +02:00
|
|
|
rm -fr build/ dist/ *.egg-info/
|
2012-12-09 18:05:04 +01:00
|
|
|
find . | grep __pycache__ | xargs rm -fr
|
2012-08-31 17:20:38 +02:00
|
|
|
|
|
|
|
build:
|
2012-12-09 18:05:04 +01:00
|
|
|
$(SETUP) build
|
2012-08-31 17:20:38 +02:00
|
|
|
|
|
|
|
sdist:
|
2012-12-09 18:05:04 +01:00
|
|
|
$(SETUP) sdist
|
2012-08-31 17:20:38 +02:00
|
|
|
|
|
|
|
bdist:
|
2012-12-09 18:05:04 +01:00
|
|
|
$(SETUP) bdist
|
2012-08-31 17:20:38 +02:00
|
|
|
|
2012-09-01 00:55:45 +02:00
|
|
|
bdist_egg:
|
2012-12-09 18:05:04 +01:00
|
|
|
$(SETUP) bdist_egg
|
2012-09-01 00:55:45 +02:00
|
|
|
|
|
|
|
install: bdist_egg
|
2012-12-09 18:05:04 +01:00
|
|
|
sudo $(SETUP) install
|
2012-09-01 00:55:45 +02:00
|
|
|
|
2012-09-01 10:55:13 +02:00
|
|
|
release:
|
2012-12-09 18:05:04 +01:00
|
|
|
zenity --question
|
|
|
|
$(SETUP) sdist bdist_egg upload
|