summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-03-05 16:18:44 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-03-05 16:18:44 (GMT)
commit350a872e594d34c645eb5657d07f3ee9a90959d6 (patch)
tree1c0fca98b17dacaa90ceb090a726f46f53141fde /PCbuild
parent8c7c56e7c386950c66e1a80502d17ce6b421484a (diff)
downloadcpython-350a872e594d34c645eb5657d07f3ee9a90959d6.zip
cpython-350a872e594d34c645eb5657d07f3ee9a90959d6.tar.gz
cpython-350a872e594d34c645eb5657d07f3ee9a90959d6.tar.bz2
Add buildbot support scripts.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pybuild.bat5
-rw-r--r--PCbuild/pyclean.bat5
2 files changed, 10 insertions, 0 deletions
diff --git a/PCbuild/pybuild.bat b/PCbuild/pybuild.bat
new file mode 100644
index 0000000..5a0cc5b
--- /dev/null
+++ b/PCbuild/pybuild.bat
@@ -0,0 +1,5 @@
+call "%VS71COMNTOOLS%vsvars32.bat"
+devenv.exe /build Debug /out build.txt PCbuild\pcbuild.sln
+type build.txt
+del build.txt
+
diff --git a/PCbuild/pyclean.bat b/PCbuild/pyclean.bat
new file mode 100644
index 0000000..92e6545
--- /dev/null
+++ b/PCbuild/pyclean.bat
@@ -0,0 +1,5 @@
+call "%VS71COMNTOOLS%vsvars32.bat"
+devenv.exe /clean Debug /out clean.txt PCbuild\pcbuild.sln
+type clean.txt
+del clean.txt
+