mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 13:35:16 +03:00
33 lines
467 B
Makefile
33 lines
467 B
Makefile
SETUP = python3 setup.py
|
|
|
|
.PHONY: default clean build sdist bdist bdist_egg install release
|
|
|
|
default: build sdist bdist bdist_egg
|
|
|
|
test:
|
|
$(SETUP) test
|
|
|
|
clean:
|
|
zenity --question
|
|
rm -fr build/ dist/ src/*.egg-info/
|
|
find . | grep __pycache__ | xargs rm -fr
|
|
|
|
build:
|
|
$(SETUP) build
|
|
|
|
sdist:
|
|
$(SETUP) sdist
|
|
|
|
bdist:
|
|
$(SETUP) bdist
|
|
|
|
bdist_egg:
|
|
$(SETUP) bdist_egg
|
|
|
|
install: bdist_egg
|
|
sudo $(SETUP) install
|
|
|
|
release:
|
|
zenity --question
|
|
$(SETUP) sdist bdist_egg upload
|