From 57240f9083f10bff749f796139f2794ec676c0cf Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 16 Apr 2010 09:14:26 -0300 Subject: [PATCH] Added a "sdist" target, 'cause I'm always calling it instead of going for setup.py first. --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index cb21d4b..4425bf7 100644 --- a/makefile +++ b/makefile @@ -12,4 +12,7 @@ check: find . -name '*.py' -exec pyflakes {} \; python utils/pep8.py --filename=*.py --repeat . -.PHONY: check pot doc deb +sdist: + python setup.py sdist --formats=gztar,zip + +.PHONY: check pot doc deb sdist