]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/modules/buildall.py
merged 2.2 branch
[wxWidgets.git] / utils / wxPython / modules / buildall.py
diff --git a/utils/wxPython/modules/buildall.py b/utils/wxPython/modules/buildall.py
deleted file mode 100755 (executable)
index 79ef843..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-#----------------------------------------------------------------------------
-# Name:         buildall.py
-# Purpose:     Invokes the build script for all modules defined in
-#               MODULELIST
-#
-# Author:       Robin Dunn
-#
-# Created:      18-Aug-1999
-# RCS-ID:       $Id$
-# Copyright:    (c) 1999 by Total Control Software
-# Licence:      wxWindows license
-#----------------------------------------------------------------------------
-
-import sys, os
-sys.path.insert(0, '../distrib')
-import build
-
-MODULELIST = ['html', 'glcanvas', 'utils', 'ogl', ] #'lseditor']
-
-
-
-for module in MODULELIST:
-    cwd = os.getcwd()
-    print "**** Building %s ****" % module
-    err = build.main([sys.argv[0], '-C', module] + sys.argv[1:])
-    os.chdir(cwd)
-    if err:
-        break
-
-sys.exit(err)