]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/regenMakefile.py
don't create samples/autoconf_inc.m4
[wxWidgets.git] / build / bakefiles / regenMakefile.py
1 #!/usr/bin/env python
2
3 #
4 # Generates Makefile that is used to regenerate native makefiles from
5 # bakefiles.
6 #
7 # $Id$
8 #
9
10 import string, os.path
11
12 file = open('Makefile', 'wt')
13 file.write("""
14 # Generated by regenMakefile.py
15
16 BAKEFILE = bakefile
17 BAKEARGS = -v
18
19
20 """)
21
22 lines = []
23 all = {}
24 all['autoconf'] = ['../../configure']
25
26 def addMakefile(bake, makedirs, deps=[], args={}):
27 """Adds rules to regenerate native makefile in directory 'makedir' from
28 bakefiles 'bake'. 'deps' contains additional dependencies (bakefiles
29 other than 'bake'."""
30 print 'adding %s...' % bake
31 lines.append('')
32 lines.append('# from %s' % bake)
33
34 def add(bake, makedirs, make, dep, format, args={}):
35 a = ''
36 if 'all' in args: a += ' %s' % args['all']
37 if format in args: a += ' %s' % args[format]
38 if format in makedirs:
39 makedir = makedirs[format]
40 else:
41 makedir = makedirs['all']
42 tfile = '%s/%s' % (makedir, make)
43 lines.append('%s: %s' % (tfile, dep))
44 lines.append('\t$(BAKEFILE) $(BAKEARGS) -f%s -o%s%s %s' % \
45 (format, tfile, a, bake))
46 lines.append('\ttouch %s' % tfile)
47 if format not in all: all[format] = []
48 all[format].append(tfile)
49
50 dep = string.join(deps + [bake], ' ')
51
52 add(bake, makedirs, 'Makefile.in', dep, 'autoconf', args)
53 add(bake, makedirs, 'makefile.bcc', dep, 'borland', args)
54
55
56
57 # -----------------------------------------------
58 # Add the makefiles:
59 # -----------------------------------------------
60
61 # main makefile:
62 addMakefile('wx.bkl', {'all':'..','autoconf':'../..'},
63 ['common.bkl', 'config.bkl', 'files.bkl', 'monolithic.bkl',
64 'multilib.bkl', 'wxwin.py'])
65
66 # samples main makefile:
67 addMakefile('../../samples/samples.bkl', {'all':'../../samples'},
68 args={'autoconf':'-DAUTOCONF_MACROS_FILE=../../autoconf_inc.m4'})
69
70
71 CONTRIB_DIR = 1
72
73 def onSubmakefile(type, dirname, names):
74 bakes = [x for x in names if x.endswith('.bkl')]
75 if len(bakes) == 0: return
76 depth = dirname.count('/') - 2
77 if depth <= 0: return
78 prefix = ''.join(['../' for i in range(0,depth)])
79
80 args = {
81 'all':'-DWXTOPDIR=%s../' % prefix,
82 'autoconf':'-DAUTOCONF_MACROS_FILE=../../autoconf_inc.m4',
83 }
84
85 for bake in bakes:
86 if type==CONTRIB_DIR:
87 acdir = '../../contrib/src/%s' % dirname.split('/')[-1]
88 ruledep = 'common_contrib.bkl'
89 else:
90 acdir = dirname
91 ruledep = 'common_samples.bkl'
92 addMakefile('%s/%s' % (dirname, bake),
93 {'all':dirname,'autoconf':acdir},
94 deps=['common.bkl',ruledep,'config.bkl'],
95 args=args)
96
97 os.path.walk('../../samples', onSubmakefile, None)
98 os.path.walk('../../contrib/build', onSubmakefile, CONTRIB_DIR)
99
100
101 cleanCmds = ''
102 for f in all:
103 for i in all[f]:
104 cleanCmds += '\trm -f %s\n' % i
105
106 for f in all:
107 var = '%s_ALL' % f.upper()
108 file.write('%s = %s\n' % (var,' '.join(all[f])))
109
110 file.write('all:')
111 for f in all:
112 file.write(' %s' % f)
113 file.write('\n\n')
114 for f in all:
115 file.write('%s: $(%s_ALL)\n' % (f, f.upper()))
116
117 file.write("""
118 clean:
119 \trm -f ../../autoconf_inc.m4
120 %s
121
122 ../../autoconf_inc.m4: ../../Makefile.in
123 ../../configure: ../../autoconf_inc.m4
124 \t(cd ../.. ; aclocal && autoconf)
125
126 Makefile: regenMakefile.py
127 \t./regenMakefile.py
128 \t@echo
129 \t@echo -------------------------------------------
130 \t@echo Please rerun make, Makefile was regenerated
131 \t@echo -------------------------------------------
132 \t@echo
133 \t@exit 1
134 """ % cleanCmds)
135 for l in lines:
136 file.write('%s\n' % l)
137 file.close()