aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
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