aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-03-15 15:04:36 -0400
committerWaylan Limberg <waylan@gmail.com>2013-03-15 15:04:36 -0400
commited508633c6db0342b6fbec681bbce4aa11507ba9 (patch)
treeec5b8a8cfe2b691276edfa4784a0f0610b33fcfb /makefile
parent3d14596042c75b80994f636bcb7666e76bfeca85 (diff)
downloadmarkdown-ed508633c6db0342b6fbec681bbce4aa11507ba9.tar.gz
markdown-ed508633c6db0342b6fbec681bbce4aa11507ba9.tar.bz2
markdown-ed508633c6db0342b6fbec681bbce4aa11507ba9.zip
More makefile cleanup. Fixes #202.
Diffstat (limited to 'makefile')
-rw-r--r--makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/makefile b/makefile
index 93792a1..be64b06 100644
--- a/makefile
+++ b/makefile
@@ -1,30 +1,36 @@
# Python-Markdown makefile
+.PHONY : install
install:
python setup.py install
+.PHONY : deploy
deploy:
python setup.py register
python setup.py sdist --formats zip,gztar upload
+.PHONY : build
build:
python setup.py sdist --formats zip,gztar
+.PHONY : build-win
build-win:
python setup.py bdist_wininst
+.PHONY : docs
docs:
python setup.py build_docs --force
- cd build/docs
- zip -r ../docs.zip .
- cd ../../
+ cd build/docs && zip -r ../docs.zip .
+.PHONY : test
test:
tox
+.PHONY : update-tests
update-tests:
python run-tests.py update
+.PHONY : clean
clean:
rm -f MANIFEST
rm -f test-output.html