summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2020-07-11 03:19:54 -0400
committerrsiddharth <rsd@gnu.org>2020-07-11 03:19:54 -0400
commitda7c4365ce4af5429093f65ea0c781a9db178105 (patch)
tree7d5b34c6531956e9c42baa23a9151c378129c934
parent1482b9e33398f194f07c0ba59807973b1f85ba7e (diff)
Makefile: Rename build-dist -> build.
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0063318..aae57d8 100644
--- a/Makefile
+++ b/Makefile
@@ -14,15 +14,15 @@ VENV_DIR=${VENV_PREFIX}/.lpschedule-generator
test:
@nosetests
-
.PHONY: test
fmt:
black --include 'lps_gen.py|setup.py|tests/*.py|lpschedule_generator/*.py' .
.PHONY: fmt
-build-dist:
+build:
@python setup.py sdist bdist_wheel
+.PHONY: build
upload:
@twine upload -r pypi -s --sign-with 'gpg2' \
@@ -31,8 +31,7 @@ upload:
@twine upload -r pypi -s --sign-with 'gpg2' \
-i '1534 126D 8C8E AD29 EDD9 1396 6BE9 3D8B F866 4377' \
dist/*.whl
-
-.PHONY: build-dist upload
+.PHONY: upload
docs:
${GNU_MAKE} -C docs html