]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/wx.bkl
Virtualize OnInternalIdle.
[wxWidgets.git] / build / bakefiles / wx.bkl
CommitLineData
ddf98968
VS
1<?xml version="1.0" ?>
2<!-- $Id$ -->
3
4
77ffb593 5<!-- Master bakefile for wxWidgets -->
ddf98968
VS
6
7<makefile>
8
6ee3c064
VS
9 <!-- make sure setup.h is created as soon as possible: -->
10 <phony id="setup_h" cond="FORMAT!='autoconf'">
11 <dependency-of>all</dependency-of>
12 </phony>
13
ddf98968 14 <set var="BUILDING_LIB">1</set>
c79241a2 15
ddf98968
VS
16 <!-- common rules, names etc. for wx: -->
17 <include file="common.bkl"/>
c79241a2 18
ddf98968
VS
19 <!-- list of files sorted into categories: -->
20 <include file="files.bkl"/>
c79241a2 21
77ffb593 22 <!-- wxWidgets variant where everything is in one library: -->
ddf98968
VS
23 <include file="monolithic.bkl"/>
24 <!-- ...and when there are multiple libraries: -->
e86e1522 25 <include file="multilib.bkl"/>
af594eca
VS
26
27 <if cond="FORMAT in ['msvc6prj','msevc4prj']">
28 <set var="MSVC6PRJ_MERGED_TARGETS">
29 <if cond="MONOLITHIC=='0'">$(MSVC6PRJ_MERGED_TARGETS_MULTILIB)</if>
30 <if cond="MONOLITHIC=='1'">$(MSVC6PRJ_MERGED_TARGETS_MONOLIB)</if>
31 </set>
32 </if>
33
4d264332
VS
34 <!-- OpenGL canvas is built as separate library in both cases: -->
35 <include file="opengl.bkl"/>
c79241a2
VS
36 <!-- Dynamically loadable plugins: -->
37 <include file="plugins.bkl"/>
38
ddf98968 39 <!-- Samples target (not dependency of 'all'): -->
ddf98968 40 <subproject id="samples">
289919bf
VS
41 <installable>no</installable>
42 <dir cond="FORMAT=='autoconf'">samples</dir>
a92d711e 43 <dir cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL']">../../samples</dir>
ddf98968 44 </subproject>
e30fbc52 45
f9e1c3c5
VS
46 <if cond="FORMAT=='autoconf'">
47
48 <!-- WXRC compiler is built by default: -->
49 <!-- FIXME: this is dirty hack, better bakefile support for
50 conditional and optional subprojects is needed -->
51 <action id="wxrc" cond="USE_XRC=='1'">
52 <dependency-of>all</dependency-of>
7b3dba49
VS
53
54 <!-- some of these are not built in all configurations, <depends>
55 takes care of ignoring the disabled ones: -->
56 <depends>monodll</depends>
57 <depends>monolib</depends>
58 <depends>basedll</depends>
59 <depends>baselib</depends>
60 <depends>xmldll</depends>
61 <depends>xmllib</depends>
62
f9e1c3c5
VS
63 <command>
64 (test -d utils/wxrc &amp;&amp; cd utils/wxrc &amp;&amp; $(DOLLAR)(MAKE) all) || true
65 </command>
66 </action>
67 <action id="clean-wxrc" cond="USE_XRC=='1'">
68 <dependency-of>clean</dependency-of>
69 <command>
70 (test -d utils/wxrc &amp;&amp; cd utils/wxrc &amp;&amp; $(DOLLAR)(MAKE) clean) || true
71 </command>
72 </action>
73 <action id="install-wxrc" cond="USE_XRC=='1'">
74 <dependency-of>install</dependency-of>
7b3dba49 75 <depends>wxrc</depends>
f9e1c3c5
VS
76 <command>
77 (test -d utils/wxrc &amp;&amp; cd utils/wxrc &amp;&amp; $(DOLLAR)(MAKE) install) || true
78 </command>
79 </action>
80
ddf98968
VS
81 <!-- "make install": -->
82
83 <data-files>
84 <files>wxwin.m4</files>
85 <install-to>$(DATADIR)/aclocal</install-to>
86 </data-files>
87
ddf98968
VS
88 <action id="install-wxconfig">
89 <dependency-of>install</dependency-of>
90 <command>
004779cd 91 $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
8708fa76 92 $(INSTALL_DIR) $(DESTDIR)$(LIBDIR)/wx/config
ceec2216
RL
93 $(INSTALL_PROGRAM) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(LIBDIR)/wx/config
94 (cd $(DESTDIR)$(BINDIR) &amp;&amp; rm -f wx-config &amp;&amp; $(LN_S) $(DESTDIR)$(LIBDIR)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config)
ddf98968
VS
95 </command>
96 </action>
97
98 <data-files>
99 <srcdir>$(BUILDDIR)</srcdir>
ceec2216
RL
100 <files>lib/wx/include/$(TOOLCHAIN_FULLNAME)/wx/setup.h</files>
101 <install-to>$(LIBDIR)/wx/include/$(TOOLCHAIN_FULLNAME)/wx</install-to>
ddf98968
VS
102 </data-files>
103
104 <headers>
105 <srcdir>$(SRCDIR)/include</srcdir>
106 <files>$(ALL_HEADERS)</files>
166bcebb 107 <install-to>
a1bf307a 108 $(INCLUDEDIR)/wx-$(WX_RELEASE)$(WX_FLAVOUR)
166bcebb 109 </install-to>
ddf98968
VS
110 </headers>
111
065a32a5
VS
112 <!-- Locales: -->
113 <using module="gettext"/>
114 <gettext-catalogs id="locale">
115 <srcdir>$(SRCDIR)/locale</srcdir>
116 <catalog-name>wxstd</catalog-name>
117 <linguas>
118 ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk
119 zh zh_CN zh_TW
120 </linguas>
121 <install-to>$(LOCALEDIR)</install-to>
122 </gettext-catalogs>
ddf98968
VS
123
124 <!-- Mac OS X resources: -->
125 <set var="MACOS_R">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r</set>
126 <set var="MACOS_RSRC">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).rsrc</set>
25a4727e
DE
127 <action id="cocoa-res" cond="TOOLKIT=='COCOA'">
128 <dependency-of>all</dependency-of>
129 <set var="__targetname">$(MACOS_R)</set>
130 <command>
131 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
132 $(DEREZ) $(MACOS_RSRC) -useDF >$(MACOS_R)
133 </command>
134 <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
135 </action>
136 <action id="cocoa-res-install" cond="TOOLKIT=='COCOA'">
137 <dependency-of>install</dependency-of>
a4297f6a 138 <depends>cocoa-res</depends>
25a4727e
DE
139 <command>
140 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
141 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
142 </command>
143 </action>
ddf98968
VS
144
145 </if>
146
4cd612f9 147
a92d711e
VS
148 <!-- copy setup.h on DOS/Windows: -->
149 <if cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL']">
4cd612f9 150 <mkdir id="libdir">
47652170
VS
151 <dir>$(LIBDIRNAME)</dir>
152 </mkdir>
ee929bcf 153 <mkdir id="libdir_setup">
47652170 154 <depends>libdir</depends>
ee929bcf
VS
155 <dir>$(SETUPHDIR)</dir>
156 </mkdir>
157 <mkdir id="libdir_setup_wx">
158 <depends>libdir_setup</depends>
6ee3c064 159 <dependency-of>setup_h</dependency-of>
ee929bcf 160 <dir>$(SETUPHDIR)/wx</dir>
4cd612f9 161 </mkdir>
399a8824 162
ee929bcf 163 <set var="SETUP_H_SUBDIR">
399a8824 164 <if cond="WXUNIV=='1'">univ</if>
a92d711e 165 <if cond="WXUNIV=='0'">$(TOOLKIT_LOWERCASE)</if>
399a8824 166 </set>
47652170 167
399a8824 168 <copy-file-to-file-if-not-exist id="master_setup.h">
ee929bcf
VS
169 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src>
170 <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst>
b0251b16 171 <dependency-of>setup_h</dependency-of>
6ee3c064
VS
172 </copy-file-to-file-if-not-exist>
173 <copy-file-to-file-if-not-exist id="setup.h">
174 <dependency-of>setup_h</dependency-of>
ee929bcf
VS
175 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</src>
176 <dst>$(SETUPHDIR)/wx/setup.h</dst>
6ee3c064 177 </copy-file-to-file-if-not-exist>
5d1000e7 178
4cd612f9
VS
179 </if>
180
289919bf 181
289919bf 182 <if cond="FORMAT=='autoconf'">
065a32a5
VS
183
184 <!-- Show this banner after installation: -->
289919bf
VS
185 <modify-target target="install">
186 <command>
187@echo " "
d424f5ae
VS
188@echo " ------------------------------------------------------"
189@echo " "
77ffb593 190@echo " The installation of wxWidgets is finished. On certain"
289919bf
VS
191@echo " platforms (e.g. Linux) you'll now have to run ldconfig"
192@echo " if you installed a shared library and also modify the"
193@echo " LD_LIBRARY_PATH (or equivalent) environment variable."
194@echo " "
77ffb593 195@echo " wxWidgets comes with no guarantees and doesn't claim"
289919bf
VS
196@echo " to be suitable for any purpose."
197@echo " "
77ffb593 198@echo " Read the wxWidgets Licence on licencing conditions."
d424f5ae
VS
199@echo " "
200@echo " ------------------------------------------------------"
289919bf
VS
201@echo " "
202 </command>
203 </modify-target>
289919bf 204
065a32a5 205 <!-- add "make dist" target to autoconf: -->
ca58c9bb
VS
206 <set var="VARS_DONT_ELIMINATE" append="1">
207 ALL_BASE_SOURCES WX_VERSION
208 </set>
209 <fragment format="autoconf" file="make_dist.mk"/>
065a32a5 210
ca58c9bb 211 </if>
5d1000e7
VS
212
213 <include file="build_cfg.bkl"/>
ca58c9bb 214
ddf98968 215</makefile>