]> git.saurik.com Git - wxWidgets.git/blame_incremental - build/bakefiles/wx.bkl
Warning fix for wxLogs.
[wxWidgets.git] / build / bakefiles / wx.bkl
... / ...
CommitLineData
1<?xml version="1.0" ?>
2<!-- $Id$ -->
3
4
5<!-- Master bakefile for wxWidgets -->
6
7<makefile>
8
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
14 <set var="BUILDING_LIB">1</set>
15
16 <!-- common rules, names etc. for wx: -->
17 <include file="common.bkl"/>
18
19 <!-- list of files sorted into categories: -->
20 <include file="files.bkl"/>
21
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"/>
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
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"/>
38
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 ['PM','MSW','MGL']">../../samples</dir>
44 </subproject>
45
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>
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
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>
75 <depends>wxrc</depends>
76 <command>
77 (test -d utils/wxrc &amp;&amp; cd utils/wxrc &amp;&amp; $(DOLLAR)(MAKE) install) || true
78 </command>
79 </action>
80
81 <!-- "make install": -->
82
83 <data-files>
84 <files>wxwin.m4</files>
85 <install-to>$(DATADIR)/aclocal</install-to>
86 </data-files>
87
88 <action id="install-wxconfig">
89 <dependency-of>install</dependency-of>
90 <command>
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) &amp;&amp; rm -f wx-config &amp;&amp; $(LN_S) $(DESTDIR)$(LIBDIR)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config)
95 </command>
96 </action>
97
98 <data-files>
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>
102 </data-files>
103
104 <headers>
105 <srcdir>$(SRCDIR)/include</srcdir>
106 <files>$(ALL_HEADERS)</files>
107 <install-to>
108 $(INCLUDEDIR)/wx-$(WX_RELEASE)$(WX_FLAVOUR)
109 </install-to>
110 </headers>
111
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>
123 <gettext-catalogs id="locale_msw">
124 <srcdir>$(SRCDIR)/locale/msw</srcdir>
125 <catalog-name>wxmsw</catalog-name>
126 <linguas>it</linguas>
127 <install-to>$(LOCALEDIR)</install-to>
128 </gettext-catalogs>
129
130
131 <!-- Mac OS X resources: -->
132 <set var="MACOS_R">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r</set>
133 <set var="MACOS_RSRC">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).rsrc</set>
134 <action id="cocoa-res" cond="TOOLKIT=='COCOA'">
135 <dependency-of>all</dependency-of>
136 <set var="__targetname">$(MACOS_R)</set>
137 <command>
138 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
139 $(DEREZ) $(MACOS_RSRC) -useDF >$(MACOS_R)
140 </command>
141 <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
142 </action>
143 <action id="cocoa-res-install" cond="TOOLKIT=='COCOA'">
144 <dependency-of>install</dependency-of>
145 <depends>cocoa-res</depends>
146 <command>
147 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
148 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
149 </command>
150 </action>
151
152 </if>
153
154
155 <!-- copy setup.h on DOS/OS2/Windows: -->
156 <if cond="FORMAT!='autoconf' and TOOLKIT in ['PM','MSW','MGL']">
157 <mkdir id="libdir">
158 <dir>$(LIBDIRNAME)</dir>
159 </mkdir>
160 <mkdir id="libdir_setup">
161 <depends>libdir</depends>
162 <dir>$(SETUPHDIR)</dir>
163 </mkdir>
164 <mkdir id="libdir_setup_wx">
165 <depends>libdir_setup</depends>
166 <dependency-of>setup_h</dependency-of>
167 <dir>$(SETUPHDIR)/wx</dir>
168 </mkdir>
169
170 <set var="SETUP_H_SUBDIR">
171 <if cond="WXUNIV=='1'">univ</if>
172 <if cond="WXUNIV=='0' and TOOLKIT!='PM'">$(TOOLKIT_LOWERCASE)</if>
173 <if cond="WXUNIV=='0' and TOOLKIT=='PM'">os2</if>
174 </set>
175
176 <copy-file-to-file-if-not-exist id="master_setup.h">
177 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src>
178 <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst>
179 <dependency-of>setup_h</dependency-of>
180 </copy-file-to-file-if-not-exist>
181 <copy-file-to-file-if-not-exist id="setup.h">
182 <dependency-of>setup_h</dependency-of>
183 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</src>
184 <dst>$(SETUPHDIR)/wx/setup.h</dst>
185 </copy-file-to-file-if-not-exist>
186
187 </if>
188
189
190 <if cond="FORMAT=='autoconf'">
191
192 <!-- Show this banner after installation: -->
193 <modify-target target="install">
194 <command>
195@echo " "
196@echo " ------------------------------------------------------"
197@echo " "
198@echo " The installation of wxWidgets is finished. On certain"
199@echo " platforms (e.g. Linux) you'll now have to run ldconfig"
200@echo " if you installed a shared library and also modify the"
201@echo " LD_LIBRARY_PATH (or equivalent) environment variable."
202@echo " "
203@echo " wxWidgets comes with no guarantees and doesn't claim"
204@echo " to be suitable for any purpose."
205@echo " "
206@echo " Read the wxWidgets Licence on licencing conditions."
207@echo " "
208@echo " ------------------------------------------------------"
209@echo " "
210 </command>
211 </modify-target>
212
213 <!-- add "make dist" target to autoconf: -->
214 <set var="VARS_DONT_ELIMINATE" append="1">
215 ALL_BASE_SOURCES WX_VERSION
216 </set>
217 <fragment format="autoconf" file="make_dist.mk"/>
218
219 </if>
220
221 <include file="build_cfg.bkl"/>
222
223</makefile>