mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 13:35:16 +03:00
19 lines
250 B
Makefile
19 lines
250 B
Makefile
|
default: install sdist bdist
|
||
|
|
||
|
clean:
|
||
|
rm -fr build/ dist/
|
||
|
|
||
|
build:
|
||
|
python3 setup.py build
|
||
|
|
||
|
install: build
|
||
|
sudo python3 setup.py install
|
||
|
|
||
|
sdist:
|
||
|
python3 setup.py sdist
|
||
|
|
||
|
bdist:
|
||
|
python3 setup.py bdist
|
||
|
|
||
|
.PHONY: default clean build install sdist bdist
|