mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 21:45:02 +03:00
22 lines
326 B
Makefile
22 lines
326 B
Makefile
default: sdist bdist bdist_egg install
|
|
|
|
clean:
|
|
rm -fr build/ dist/ *.egg-info/
|
|
|
|
build:
|
|
python3 setup.py build
|
|
|
|
sdist:
|
|
python3 setup.py sdist
|
|
|
|
bdist:
|
|
python3 setup.py bdist
|
|
|
|
bdist_egg:
|
|
python3 setup.py bdist_egg
|
|
|
|
install: bdist_egg
|
|
sudo python3 setup.py install
|
|
|
|
.PHONY: default clean build sdist bdist bdist_egg install
|