From 0a753ead2d75c8ac5da22927fffa7d0d1cc9149c Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 22 Oct 2011 02:29:21 +0000 Subject: [PATCH] Begin a few new build commands git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/build.py b/build.py index d7227d6c..f08186a1 100755 --- a/build.py +++ b/build.py @@ -810,6 +810,24 @@ def cleanall(options, args): delFiles(files) +def buildall(options, args): + # (re)build everything + build_wx(options, args) + dox(options, args) + touch(options, args) + etg(options, args) + sip(options, args) + build_py(options, args) + test(options, args) + + +def sdist(options, args): + # build a source tarball that includes generated files + pass + +def bdist(options, args): + # build a tarball and/or installer that includes the files needed at runtime + pass #---------------------------------------------------------------------------