summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Petrello <lists@ryanpetrello.com>2015-05-06 10:17:30 -0400
committerRyan Petrello <lists@ryanpetrello.com>2015-05-06 10:17:56 -0400
commitca2e90a94031fdbba31bf4bda87b51a87e97eb7c (patch)
treefb7475ce51ddc4d8807900553d52eff682fe4f9e /Makefile
parent79a8791e7fefdcbe62f264bf905ac09a1958e753 (diff)
downloadcliff-master.tar.gz
Cliff has moved to the `openstack` namespace. Update README.HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 65c420d..0000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-help:
- @echo "release - package and upload a release"
- @echo "sdist - package"
- @echo "docs - generate HTML documentation"
- @echo "clean - remove build artifacts"
-
-release: docs
- rm -rf dist build
- python setup.py sdist upload
-
-sdist: docs
- python setup.py sdist
- ls -l dist
-
-clean:
- rm -rf dist build *.egg-info
- (cd docs && make clean)
-
-.PHONY: docs
-docs:
- (cd docs && make clean html)