# This is really the wxPython version number, and will be placed in the
# Makefiles for use with the distribution related targets.
-__version__ = '2.1b3'
+__version__ = '2.1.11'
#----------------------------------------------------------------------------
runClean = runClean,
runUninstall = runUninstall)
+ err = 0
if config.readConfigFiles(args):
config.doFixups()
config.makeMakefile()
- err = 0
if config.runBuild:
cmd = "%s -f %s" % (config.MAKE, config.MAKEFILE)
print "Running:", cmd
err = os.system(cmd)
+ return err
#----------------------------------------------------------------------------
self.WXUSINGDLL = '1'
self.OTHERDEP = ''
self.WXPSRCDIR = '$(WXDIR)/utils/wxPython/src'
+ self.SWIGDEPS = ''
+ self.OTHERDEPS = ''
if sys.platform == 'win32':
self.OVERRIDEFLAGS = '/GX-'
self.RMCMD = '-erase '
self.WXPSRCDIR = os.path.normpath(self.WXPSRCDIR)
+ self.CRTFLAG = ''
else:
# now build the text for the dependencies
depends = ""
for name in self.SWIGFILES:
- text = '$(GENCODEDIR)/%s.cpp $(GENCODEDIR)/%s.py : %s.i\n' \
+ rootname = os.path.splitext(name)[0]
+ text = '$(GENCODEDIR)/%s.cpp $(GENCODEDIR)/%s.py : %s.i %s\n' \
'$(TARGETDIR)\\%s.py : $(GENCODEDIR)\\%s.py\n' % \
- tuple([os.path.splitext(name)[0]] * 5)
+ (rootname, rootname, rootname, self.SWIGDEPS, rootname, rootname)
depends = depends + text
+ if self.OTHERDEPS:
+ text = '%s%s : %s\n' % \
+ (os.path.splitext(name)[0], self.OBJEXT, self.OTHERDEPS)
+ depends = depends + text
for name in self.PYFILES:
text = '$(TARGETDIR)\\%s.py : %s.py\n' % \
tuple([os.path.splitext(name)[0]] * 2)
depends = depends + text
+ if self.OTHERDEPS:
+ for name in self.SOURCES:
+ name = os.path.basename(name)
+ text = '%s%s : %s\n' % \
+ (os.path.splitext(name)[0], self.OBJEXT, self.OTHERDEPS)
+ depends = depends + text
+
self.DEPENDS = swapslash(depends)
LFLAGS = %(LFLAGS)s %(OTHERLFLAGS)s
EXTRALIBS = %(LIBS)s %(OTHERLIBS)s
+CRTFLAG=%(CRTFLAG)s
+
#----------------------------------------------------------------------
!include $(WXDIR)\\src\\makevc.env
%%.o : $(GENCODEDIR)/%%.c
$(CC) $(CCSHARED) $(CFLAGS) $(OTHERCFLAGS) -c $<
+ifndef NOSWIG
$(GENCODEDIR)/%%.cpp : %%.i
swig $(SWIGFLAGS) -c -o $@ $<
$(GENCODEDIR)/%%.py : %%.i
swig $(SWIGFLAGS) -c -o $(GENCODEDIR)/tmp_wrap.cpp $<
rm $(GENCODEDIR)/tmp_wrap.cpp
+endif
+
$(TARGETDIR)/%% : %%
cp -f $< $@
$(TARGETDIR) :
- mkdir $(TARGETDIR)
+ mkdir -p $(TARGETDIR)
$(GENCODEDIR):
mkdir $(GENCODEDIR)
#----------------------------------------------------------------------------
if __name__ == '__main__':
- main(sys.argv)
+ err = main(sys.argv)
+ sys.exit(err)
#----------------------------------------------------------------------------