5 <!-- Master bakefile for wxWidgets -->
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>
14 <set var=
"BUILDING_LIB">1</set>
16 <!-- common rules, names etc. for wx: -->
17 <include file=
"common.bkl"/>
19 <!-- list of files sorted into categories: -->
20 <include file=
"files.bkl"/>
22 <!-- wxWidgets variant where everything is in one library: -->
23 <include file=
"monolithic.bkl"/>
24 <!-- ...and when there are multiple libraries: -->
25 <include file=
"multilib.bkl"/>
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>
34 <!-- OpenGL canvas is built as separate library in both cases: -->
35 <include file=
"opengl.bkl"/>
36 <!-- Dynamically loadable plugins: -->
37 <include file=
"plugins.bkl"/>
39 <!-- Samples target (not dependency of 'all'): -->
40 <subproject id=
"samples">
41 <installable>no
</installable>
42 <dir cond=
"FORMAT=='autoconf'">samples
</dir>
43 <dir cond=
"FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL']">../../samples
</dir>
46 <if cond=
"FORMAT=='autoconf'">
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>
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>
64 (test -d utils/wxrc
&& cd utils/wxrc
&& $(DOLLAR)(MAKE) all) || true
67 <action id=
"clean-wxrc" cond=
"USE_XRC=='1'">
68 <dependency-of>clean
</dependency-of>
70 (test -d utils/wxrc
&& cd utils/wxrc
&& $(DOLLAR)(MAKE) clean) || true
73 <action id=
"install-wxrc" cond=
"USE_XRC=='1'">
74 <dependency-of>install
</dependency-of>
75 <depends>wxrc
</depends>
77 (test -d utils/wxrc
&& cd utils/wxrc
&& $(DOLLAR)(MAKE) install) || true
81 <!-- "make install": -->
84 <files>wxwin.m4
</files>
85 <install-to>$(DATADIR)/aclocal
</install-to>
88 <action id=
"install-wxconfig">
89 <dependency-of>install
</dependency-of>
91 $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
92 $(INSTALL_DIR) $(DESTDIR)$(LIBDIR)/wx/config
93 $(INSTALL_PROGRAM) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(LIBDIR)/wx/config
94 (cd $(DESTDIR)$(BINDIR)
&& rm -f wx-config
&& $(LN_S) $(DESTDIR)$(LIBDIR)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config)
99 <srcdir>$(BUILDDIR)
</srcdir>
100 <files>lib/wx/include/$(TOOLCHAIN_FULLNAME)/wx/setup.h
</files>
101 <install-to>$(LIBDIR)/wx/include/$(TOOLCHAIN_FULLNAME)/wx
</install-to>
105 <srcdir>$(SRCDIR)/include
</srcdir>
106 <files>$(ALL_HEADERS)
</files>
108 $(INCLUDEDIR)/wx-$(WX_RELEASE)$(WX_FLAVOUR)
113 <using module=
"gettext"/>
114 <gettext-catalogs id=
"locale">
115 <srcdir>$(SRCDIR)/locale
</srcdir>
116 <catalog-name>wxstd
</catalog-name>
118 ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk
121 <install-to>$(LOCALEDIR)
</install-to>
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>
127 <action id=
"macos-res" cond=
"TOOLKIT=='MAC'">
128 <dependency-of>all
</dependency-of>
129 <set var=
"__targetname">$(MACOS_R)
</set>
131 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/mac/carbon/apprsrc.r $(top_srcdir)/src/mac/carbon/carbrsrc.r $(top_srcdir)/src/mac/carbon/corersrc.r -o $(MACOS_RSRC)
132 $(DEREZ) $(MACOS_RSRC) Carbon.r -useDF
>$(MACOS_R)
134 <clean-files>$(MACOS_RSRC) $(MACOS_R)
</clean-files>
136 <action id=
"macos-res-install" cond=
"TOOLKIT=='MAC'">
137 <dependency-of>install
</dependency-of>
138 <depends>macos-res
</depends>
140 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
141 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
144 <action id=
"cocoa-res" cond=
"TOOLKIT=='COCOA'">
145 <dependency-of>all
</dependency-of>
146 <set var=
"__targetname">$(MACOS_R)
</set>
148 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
149 $(DEREZ) $(MACOS_RSRC) -useDF
>$(MACOS_R)
151 <clean-files>$(MACOS_RSRC) $(MACOS_R)
</clean-files>
153 <action id=
"cocoa-res-install" cond=
"TOOLKIT=='COCOA'">
154 <dependency-of>install
</dependency-of>
155 <depends>macos-res
</depends>
157 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
158 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
165 <!-- copy setup.h on DOS/Windows: -->
166 <if cond=
"FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL']">
168 <dir>$(LIBDIRNAME)
</dir>
170 <mkdir id=
"libdir_setup">
171 <depends>libdir
</depends>
172 <dir>$(SETUPHDIR)
</dir>
174 <mkdir id=
"libdir_setup_wx">
175 <depends>libdir_setup
</depends>
176 <dependency-of>setup_h
</dependency-of>
177 <dir>$(SETUPHDIR)/wx
</dir>
180 <set var=
"SETUP_H_SUBDIR">
181 <if cond=
"WXUNIV=='1'">univ
</if>
182 <if cond=
"WXUNIV=='0'">$(TOOLKIT_LOWERCASE)
</if>
185 <copy-file-to-file-if-not-exist id=
"master_setup.h">
186 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h
</src>
187 <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h
</dst>
188 <dependency-of>setup_h
</dependency-of>
189 </copy-file-to-file-if-not-exist>
190 <copy-file-to-file-if-not-exist id=
"setup.h">
191 <dependency-of>setup_h
</dependency-of>
192 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h
</src>
193 <dst>$(SETUPHDIR)/wx/setup.h
</dst>
194 </copy-file-to-file-if-not-exist>
199 <if cond=
"FORMAT=='autoconf'">
201 <!-- Show this banner after installation: -->
202 <modify-target target=
"install">
205 @echo " ------------------------------------------------------"
207 @echo " The installation of wxWidgets is finished. On certain"
208 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
209 @echo " if you installed a shared library and also modify the"
210 @echo " LD_LIBRARY_PATH (or equivalent) environment variable."
212 @echo " wxWidgets comes with no guarantees and doesn't claim"
213 @echo " to be suitable for any purpose."
215 @echo " Read the wxWidgets Licence on licencing conditions."
217 @echo " ------------------------------------------------------"
222 <!-- add "make dist" target to autoconf: -->
223 <set var=
"VARS_DONT_ELIMINATE" append=
"1">
224 ALL_BASE_SOURCES WX_VERSION
226 <fragment format=
"autoconf" file=
"make_dist.mk"/>
230 <include file=
"build_cfg.bkl"/>