aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-03-15 00:17:58 -0400
committerWaylan Limberg <waylan@gmail.com>2013-03-15 00:17:58 -0400
commita8836a1894eb9ec375f99e14e2625bc31ca51616 (patch)
tree64914ed4af448c3894df3b8b848aafec75d7f169 /makefile
parente5ad235956c87f07b056af1ac7218fa980921144 (diff)
downloadmarkdown-a8836a1894eb9ec375f99e14e2625bc31ca51616.tar.gz
markdown-a8836a1894eb9ec375f99e14e2625bc31ca51616.tar.bz2
markdown-a8836a1894eb9ec375f99e14e2625bc31ca51616.zip
Fixed a few minor issues with the makefile discovered deploying the last release.
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/makefile b/makefile
index 32ccd27..93792a1 100644
--- a/makefile
+++ b/makefile
@@ -3,9 +3,9 @@
install:
python setup.py install
-deploy: build
+deploy:
python setup.py register
- python setup.py upload
+ python setup.py sdist --formats zip,gztar upload
build:
python setup.py sdist --formats zip,gztar
@@ -14,7 +14,10 @@ build-win:
python setup.py bdist_wininst
docs:
- python setup.py build_docs
+ python setup.py build_docs --force
+ cd build/docs
+ zip -r ../docs.zip .
+ cd ../../
test:
tox
@@ -37,4 +40,4 @@ clean:
rm -rf build
rm -rf dist
rm -rf tmp
- # git clean -dfx' \ No newline at end of file
+ # git clean -dfx'