summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4536e72..6c38d53 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-.PHONY: default build force install test dist-src clean
+.PHONY: default build force install test dist clean
PYTHON=/usr/bin/python
TEST=
@@ -17,8 +17,9 @@ install: build
test: build
${PYTHON} tests/test_build.py ${TEST}
-dist-src:
+dist: build
${PYTHON} setup.py sdist --formats=zip,gztar
+ ${PYTHON} setup.py bdist_wininst
clean:
${PYTHON} setup.py clean -a