you-get/Makefile

22 lines
326 B
Makefile
Raw 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
.PHONY: default clean build sdist bdist bdist_egg install