From ed508633c6db0342b6fbec681bbce4aa11507ba9 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 15 Mar 2013 15:04:36 -0400 Subject: More makefile cleanup. Fixes #202. --- MANIFEST.in | 2 ++ makefile | 12 +++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index e7ad4f4..95a3ce2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,6 +5,8 @@ recursive-include tests *.txt *.html *.cfg *.py include setup.py include setup.cfg include run-tests.py +include tox.ini +include makefile include LICENSE.md include README.md include INSTALL.md 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 -- cgit v1.2.3