]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/regenMakefile.py
added contrib makefiles
[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, copy
11
12 file = open('Makefile', 'wt')
13 file.write("""
14 # Generated by regenMakefile.py
15
16 BAKEFILE = bakefile -v
17
18
19 CDEPS = config.bkl common.bkl common_contrib.bkl
20 SDEPS = config.bkl common.bkl common_samples.bkl
21 MDEPS = common.bkl config.bkl files.bkl monolithic.bkl multilib.bkl opengl.bkl wxwin.py
22 """)
23
24 lines = {}
25 all = {}
26 all['autoconf'] = ['../../configure']
27
28 linesCur = None
29
30 def addMakefile(bake, makedirs, deps=[], args={}):
31 """Adds rules to regenerate native makefile in directory 'makedir' from
32 bakefiles 'bake'. 'deps' contains additional dependencies (bakefiles
33 other than 'bake'."""
34 print 'adding %s...' % bake
35 global linesCur
36 linesCur = ['\n']
37
38 def add(bake, makedirs, make, dep, format, args={}):
39 global linesCur
40 a = ''
41 if 'all' in args: a += ' %s' % args['all']
42 if format in args: a += ' %s' % args[format]
43 if format != 'autoconf' and 'not_autoconf' in args:
44 a += ' %s' % args['not_autoconf']
45 if format in makedirs:
46 makedir = makedirs[format]
47 else:
48 makedir = makedirs['all']
49 tfile = '%s/%s' % (makedir, make)
50 linesCur.append('%s: %s' % (tfile, dep))
51 linesCur.append('\t$(BAKEFILE) -f%s -o$@ %s %s' % (format, a, bake))
52 linesCur.append('\ttouch $@')
53 if format not in all: all[format] = []
54 all[format].append(tfile)
55
56 dep = string.join(deps + [bake], ' ')
57
58 add(bake, makedirs, 'Makefile.in', dep, 'autoconf', args)
59 add(bake, makedirs, 'makefile.bcc', dep, 'borland', args)
60 add(bake, makedirs, 'makefile.vc', dep, 'msvc', args)
61 add(bake, makedirs, 'makefile.gcc', dep, 'mingw', args)
62 add(bake, makedirs, 'makefile.wat', dep, 'watcom', args)
63
64 lines[bake] = linesCur
65
66
67
68 # -----------------------------------------------
69 # Add the makefiles:
70 # -----------------------------------------------
71
72 # main makefile:
73 addMakefile('wx.bkl', {'all':'..','autoconf':'../..'}, [ '$(MDEPS)' ],
74 args={
75 'borland':'-DOPTIONS_FILE=config.bcc',
76 'msvc':'-DOPTIONS_FILE=config.vc',
77 'mingw':'-DOPTIONS_FILE=config.gcc',
78 'watcom':'-DOPTIONS_FILE=config.wat',
79 })
80
81 # samples main makefile:
82 addMakefile('../../samples/samples.bkl', {'all':'../../samples'},
83 args={
84 'autoconf':'-DAUTOCONF_MACROS_FILE=../../autoconf_inc.m4',
85 'borland':'-DOPTIONS_FILE=../build/config.bcc -DWRITE_OPTIONS_FILE=0',
86 'msvc':'-DOPTIONS_FILE=../build/config.vc -DWRITE_OPTIONS_FILE=0',
87 'mingw':'-DOPTIONS_FILE=../build/config.gcc -DWRITE_OPTIONS_FILE=0',
88 'watcom':'-DOPTIONS_FILE=../build/config.wat -DWRITE_OPTIONS_FILE=0',
89 })
90
91
92 CONTRIB_DIR = 1
93 SAMPLES_DIR = 2
94
95 def onSubmakefile(type, dirname, names):
96 bakes = [x for x in names if x.endswith('.bkl')]
97 if len(bakes) == 0: return
98 bakes.sort()
99 dirname = dirname.replace(os.sep, '/')
100 depth = dirname.count('/') - 2
101 if depth <= 0: return
102
103 if type==SAMPLES_DIR:
104 prefix = ''.join(['../' for i in range(0,depth)])
105 dirflags = '-DWXTOPDIR=%s../' % prefix
106 cfgbase = '%s../build/config.' % prefix
107 elif type==CONTRIB_DIR:
108 dirflags = '-DSRCDIR=../../src/%s' % dirname.split('/')[-1]
109 dirflags += ' -DWXTOPDIR=../../../'
110 cfgbase = '../../../build/config.'
111
112 args = {
113 'not_autoconf':dirflags,
114 'autoconf':'-DAUTOCONF_MACROS_FILE=../../autoconf_inc.m4',
115 'msvc':'-DOPTIONS_FILE='+cfgbase+'vc -DWRITE_OPTIONS_FILE=0',
116 'mingw':'-DOPTIONS_FILE='+cfgbase+'gcc -DWRITE_OPTIONS_FILE=0',
117 'borland':'-DOPTIONS_FILE='+cfgbase+'bcc -DWRITE_OPTIONS_FILE=0',
118 'watcom':'-DOPTIONS_FILE='+cfgbase+'wat -DWRITE_OPTIONS_FILE=0',
119 }
120
121 for bake in bakes:
122 if type==CONTRIB_DIR:
123 acdir = '../../contrib/src/%s' % dirname.split('/')[-1]
124 ruledep = '$(CDEPS)'
125 else:
126 acdir = dirname
127 ruledep = '$(SDEPS)'
128 addMakefile('%s/%s' % (dirname, bake),
129 {'all':dirname,'autoconf':acdir}, deps=[ruledep],
130 args=args)
131
132 os.path.walk(os.path.join('..','..','samples'),
133 onSubmakefile, SAMPLES_DIR)
134 os.path.walk(os.path.join('..','..','contrib','build'),
135 onSubmakefile, CONTRIB_DIR)
136 os.path.walk(os.path.join('..','..','contrib','samples'),
137 onSubmakefile, SAMPLES_DIR)
138 os.path.walk(os.path.join('..','..','contrib','utils'),
139 onSubmakefile, SAMPLES_DIR)
140
141
142 cleanCmds = ''
143 allK = all.keys()
144 allK.sort()
145 cleanList = []
146
147 for f in allK:
148 all[f].sort()
149
150 for f in allK:
151 for i in all[f]:
152 cleanList.append('\trm -f %s\n' % i)
153 cleanCmds = ''.join(cleanList)
154
155 for f in allK:
156 var = '%s_ALL' % f.upper()
157 file.write('%s = \\\n\t%s\n' % (var,' \\\n\t'.join(all[f])))
158
159 file.write('all:')
160 for f in allK:
161 file.write(' %s' % f)
162 file.write('\n\n')
163 for f in allK:
164 file.write('%s: $(%s_ALL)\n' % (f, f.upper()))
165
166 file.write("""
167 clean:
168 \trm -f ../../autoconf_inc.m4
169 %s
170
171 library: ../../Makefile.in ../makefile.bcc ../makefile.vc ../makefile.wat ../makefile.gcc
172
173 ../../autoconf_inc.m4: ../../Makefile.in
174 ../../configure: ../../autoconf_inc.m4
175 \t(cd ../.. ; aclocal && autoconf)
176
177 Makefile: regenMakefile.py
178 \t./regenMakefile.py
179 \t@echo
180 \t@echo -------------------------------------------
181 \t@echo Please rerun make, Makefile was regenerated
182 \t@echo -------------------------------------------
183 \t@echo
184 \t@exit 1
185 """ % cleanCmds)
186 linesK = lines.keys()
187 linesK.sort()
188 for lk in linesK:
189 for l in lines[lk]:
190 file.write('%s\n' % l)
191 file.close()