summaryrefslogtreecommitdiff
path: root/tools/win32build/doall.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-07-28 04:39:13 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-07-28 04:39:13 +0000
commitd23e5e4cde838c1aa46b0e085955cdb959e6755a (patch)
tree6c104257eb4099a8be19f58e05fc8f7037f3808d /tools/win32build/doall.py
parent1b4980a842976a037141ff94c2a3accff875a0c9 (diff)
downloadpython-numpy-d23e5e4cde838c1aa46b0e085955cdb959e6755a.tar.gz
python-numpy-d23e5e4cde838c1aa46b0e085955cdb959e6755a.tar.bz2
python-numpy-d23e5e4cde838c1aa46b0e085955cdb959e6755a.zip
Add top script to generate binaries from scratch.
Diffstat (limited to 'tools/win32build/doall.py')
-rw-r--r--tools/win32build/doall.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py
new file mode 100644
index 000000000..72a920ac3
--- /dev/null
+++ b/tools/win32build/doall.py
@@ -0,0 +1,13 @@
+import subprocess
+import os
+
+PYVER = "2.5"
+
+# Bootstrap
+subprocess.check_call(['python', 'prepare_bootstrap.py'])
+
+# Build binaries
+subprocess.check_call(['python', 'build.py', '-p', PYVER], cwd = 'bootstrap-%s' % PYVER)
+
+# Build installer using nsis
+subprocess.check_call(['makensis', 'numpy-superinstaller.nsi'], cwd = 'bootstrap-%s' % PYVER)