]> git.saurik.com Git - wxWidgets.git/blobdiff - build/bakefiles/regenMakefile.py
fixed VC++ warning in release build
[wxWidgets.git] / build / bakefiles / regenMakefile.py
index 4a115e662d616a3980cbf15d39376edb5e126094..5434dbbfedd8c7a3ea2abb760d24896af49b822f 100755 (executable)
@@ -50,6 +50,7 @@ def addMakefile(bake, makedirs, deps=[], args={}):
     dep = string.join(deps + [bake], ' ')
 
     add(bake, makedirs, 'Makefile.in', dep, 'autoconf', args)
+    add(bake, makedirs, 'makefile.bcc', dep, 'borland', args)
 
 
 
@@ -63,7 +64,8 @@ addMakefile('wx.bkl', {'all':'..','autoconf':'../..'},
              'multilib.bkl', 'wxwin.py'])
 
 # samples main makefile:
-addMakefile('../../samples/samples.bkl', {'all':'../../samples'})
+addMakefile('../../samples/samples.bkl', {'all':'../../samples'},
+            args={'autoconf':'-DAUTOCONF_MACROS_FILE=../../autoconf_inc.m4'})
 
 
 CONTRIB_DIR = 1
@@ -76,7 +78,7 @@ def onSubmakefile(type, dirname, names):
     prefix = ''.join(['../' for i in range(0,depth)])
 
     args = {
-        'all':'-DWXTOPDIR=/%s..' % prefix,
+        'all':'-DWXTOPDIR=%s../' % prefix,
         'autoconf':'-DAUTOCONF_MACROS_FILE=../../autoconf_inc.m4',
     }