you-get/Makefile

26 lines
403 B
Makefile
Raw Permalink Normal View History

2012-09-01 02:55:45 +04:00
default: sdist bdist bdist_egg install
2012-08-31 19:20:38 +04:00
clean:
2012-09-01 02:55:45 +04:00
rm -fr build/ dist/ *.egg-info/
2012-08-31 19:20:38 +04:00
build:
python3 setup.py build
sdist:
python3 setup.py sdist
bdist:
python3 setup.py bdist
2012-09-01 02:55:45 +04:00
bdist_egg:
python3 setup.py bdist_egg
install: bdist_egg
sudo python3 setup.py install
2012-09-01 12:55:13 +04:00
release:
zenity --warning
2012-09-01 12:58:53 +04:00
python3 setup.py sdist bdist_egg upload
2012-09-01 12:55:13 +04:00
.PHONY: default clean build sdist bdist bdist_egg install release