X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a90f1b0b82ea8b533c033b7e37d4f220a22c1a79..21c557b8f4d2a2c4224e41720cbd879e81e863ae:/build/bakefiles/regenMakefile.py diff --git a/build/bakefiles/regenMakefile.py b/build/bakefiles/regenMakefile.py index 6a7dff128b..4a115e662d 100755 --- a/build/bakefiles/regenMakefile.py +++ b/build/bakefiles/regenMakefile.py @@ -60,7 +60,7 @@ def addMakefile(bake, makedirs, deps=[], args={}): # main makefile: addMakefile('wx.bkl', {'all':'..','autoconf':'../..'}, ['common.bkl', 'config.bkl', 'files.bkl', 'monolithic.bkl', - 'wxwin.py']) + 'multilib.bkl', 'wxwin.py']) # samples main makefile: addMakefile('../../samples/samples.bkl', {'all':'../../samples'}) @@ -83,11 +83,13 @@ def onSubmakefile(type, dirname, names): for bake in bakes: if type==CONTRIB_DIR: acdir = '../../contrib/src/%s' % dirname.split('/')[-1] + ruledep = 'common_contrib.bkl' else: acdir = dirname + ruledep = 'common_samples.bkl' addMakefile('%s/%s' % (dirname, bake), {'all':dirname,'autoconf':acdir}, - deps=['common.bkl','common_samples.bkl','config.bkl'], + deps=['common.bkl',ruledep,'config.bkl'], args=args) os.path.walk('../../samples', onSubmakefile, None)