]> git.saurik.com Git - wxWidgets.git/blobdiff - build/bakefiles/regenMakefile.py
fixed wx-config installation
[wxWidgets.git] / build / bakefiles / regenMakefile.py
index 32d039abccfec930ca879a71b47e75bcdc457619..14ac6f4732bfbbf683b522b1e3fa752c89059f29 100755 (executable)
@@ -44,7 +44,7 @@ def addMakefile(bake, makedirs, deps=[], args={}):
             makedir = makedirs['all']
         tfile = '%s/%s' % (makedir, make)
         lines.append('%s: %s' % (tfile, dep))
-        lines.append('\t$(BAKEFILE) -f%s -o$@ %s' % (format, bake))
+        lines.append('\t$(BAKEFILE) -f%s -o$@ %s %s' % (format, a, bake))
         lines.append('\ttouch $@')
         if format not in all: all[format] = []
         all[format].append(tfile)
@@ -108,6 +108,8 @@ os.path.walk(os.path.join('..','..','samples'),
              onSubmakefile, SAMPLES_DIR)
 os.path.walk(os.path.join('..','..','contrib','build'),
              onSubmakefile, CONTRIB_DIR)
+os.path.walk(os.path.join('..','..','contrib','samples'),
+             onSubmakefile, SAMPLES_DIR)
 
 
 cleanCmds = ''