Begin a few new build commands

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-10-22 02:29:21 +00:00
parent f738327be2
commit 0a753ead2d

View File

@@ -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
#---------------------------------------------------------------------------