allow specifying non default libraries for gnu output format (patch 1469464)
[wxWidgets.git] / build / bakefiles / wxpresets / presets / wx_win32.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <!-- Original source: http://wiki.wxwidgets.org/wiki.pl?Bakefile    -->
5 <!-- Modified by: Francesco Montorsi <frm@users.sourceforge.net>    -->
6 <!--              Vaclav Slavik <vslavik@fastmail.fm> to better fit
7                   into Bakefile's presets                           -->
8 <!-- Creation date: 6/9/2004                                        -->
9 <!-- Last revision: 22/1/2005 off-CVS                               -->
10 <!--                $Id$ -->
11
12
13 <!--
14
15 FIXME: this template has (at least) the following bugs:
16
17  * it's MSW-only, the port is assumed to be wxMSW unconditionally
18
19  * multiple wx configurations (CFG variable set when building the
20    library) are not supported
21
22 -->
23
24 <!-- makefile tag signifies the beginning of the bakefile           -->
25 <makefile>
26
27     <requires version="0.1.5"/>
28
29     <!--                        OPTIONS                             -->
30     <!--                                                            -->
31     <!--    These are essentially the configurations you            -->
32     <!--    want in bakefile.                                       -->
33     <!--                                                            -->
34     <!--    In MSVC these are the different build                   -->
35     <!--    configurations you can have (in the build menu),        -->
36     <!--    and in autoconf is enabled with enable-xxx=xx.          -->
37     <!--    For other compilers a separate configuration            -->
38     <!--    file is created (such as config.gcc on gcc)             -->
39     <!--    which has several options a user can modify.            -->
40     <!--                                                            -->
41     <!--    Note that the above only happens if an option           -->
42     <!--    is not constant, i.e. if it cannot be determined        -->
43     <!--    by bakefile itself.                                     -->
44
45     <!-- this is a temporary variable until there is non general    -->
46     <!-- function in bakefiles for returning native markup for      -->
47     <!-- reading envrionment variables                              -->
48     <set var="ENV_VAR">
49         <if cond="FORMAT=='watcom'">%</if>
50         <if cond="FORMAT!='watcom'"></if>
51     </set>
52
53
54     <!-- Presets for limited dmars make.exe format: -->
55     <if cond="FORMAT=='dmars'">
56         <set var="WX_UNICODE">0</set>
57         <set var="WX_DEBUG">1</set>
58         <set var="WX_SHARED">0</set>
59     </if>
60
61
62     <!-- The directory where wxWidgets is installed: -->
63     <if cond="not isdefined('WX_DIR')">
64         <set var="WX_DIR_DEFAULT" overwrite="0">$(DOLLAR)($(ENV_VAR)WXWIN)</set>
65         <option name="WX_DIR" category="path">
66             <default-value>$(WX_DIR_DEFAULT)</default-value>
67             <description>
68                 The directory where wxWidgets library is installed
69             </description>
70         </option>
71     </if>
72
73     <!--    This is a standard option that determines               -->
74     <!--    whether the user wants to build this library as         -->
75     <!--    a dll or as a static library.                           -->
76     <if cond="not isdefined('WX_SHARED')">
77         <set var="WX_SHARED_DEFAULT" overwrite="0">0</set>
78         <option name="WX_SHARED">
79             <values>0,1</values>
80             <values-description>,DLL</values-description>
81             <default-value>$(WX_SHARED_DEFAULT)</default-value>
82             <description>
83                 Use DLL build of wx library to use?
84             </description>
85         </option>
86     </if>
87
88     <!-- Configuration for building the bakefile with               -->
89     <!-- unicode strings or not (unicode or ansi).                  -->
90     <if cond="not isdefined('WX_UNICODE')">
91         <set var="WX_UNICODE_DEFAULT" overwrite="0">0</set>
92         <option name="WX_UNICODE">
93             <values>0,1</values>
94             <values-description>,Unicode</values-description>
95             <default-value>$(WX_UNICODE_DEFAULT)</default-value>
96             <description>
97                 Compile Unicode build of wxWidgets?
98             </description>
99         </option>
100     </if>
101
102     <if cond="not isdefined('WX_DEBUG')">
103         <set var="WX_DEBUG_DEFAULT" overwrite="0">1</set>
104         <option name="WX_DEBUG">
105             <values>0,1</values>
106             <values-description>Release,Debug</values-description>
107             <default-value>$(WX_DEBUG_DEFAULT)</default-value>
108             <description>
109                 Use debug build of wxWidgets (define __WXDEBUG__)?
110             </description>
111         </option>
112     </if>
113
114     <if cond="not isdefined('WX_VERSION')">
115         <set var="WX_VERSION_DEFAULT" overwrite="0">27</set>
116         <option name="WX_VERSION">
117             <default-value>$(WX_VERSION_DEFAULT)</default-value>
118             <description>
119                 Version of the wx library to build against.
120             </description>
121         </option>
122     </if>
123
124     <if cond="not isdefined('WX_MONOLITHIC')">
125         <set var="WX_MONOLITHIC_DEFAULT" overwrite="0">0</set>
126         <option name="WX_MONOLITHIC">
127             <values>0,1</values>
128             <values-description>Multilib,Monolithic</values-description>
129             <default-value>$(WX_MONOLITHIC_DEFAULT)</default-value>
130             <description>
131                 Use monolithic build of wxWidgets?
132             </description>
133         </option>
134     </if>
135
136
137     <!--                     HELPER VARIABLES                       -->
138     <!--                                                            -->
139
140
141     <!--    The unicode define we want.  By default bakefile        -->
142     <!--    makes variables an empty string, so if unicode          -->
143     <!--    is not defined $(UNICODE_DEFINE) would expand           -->
144     <!--    to nothing (literally).                                 -->
145     <set var="WXUNICODE_DEFINE">
146         <if cond="WX_UNICODE=='1'">_UNICODE</if>
147     </set>
148
149     <!--    The debug define we need with win32 compilers           -->
150     <!--    (on Linux, the wx-config program is used).              -->
151     <set var="WXDEBUG_DEFINE">
152         <if cond="WX_DEBUG=='1'">__WXDEBUG__</if>
153     </set>
154
155     <!--    These are handy ways of dealing with the                -->
156     <!--    extensions in the library names of the                  -->
157     <!--    wxWindows library.                                      -->
158     <set var="WXLIBPOSTFIX">
159         <if cond="WX_DEBUG=='1' and WX_UNICODE=='1'">ud</if>
160         <if cond="WX_DEBUG=='1' and WX_UNICODE=='0'">d</if>
161         <if cond="WX_DEBUG=='0' and WX_UNICODE=='1'">u</if>
162     </set>
163     <set var="WX3RDPARTYLIBPOSTFIX">
164         <if cond="WX_DEBUG=='1'">d</if>
165     </set>
166
167     <set var="WXCPU">
168         <if cond="FORMAT=='msevc4prj'">_$(CPU)</if>
169     </set>
170
171     <set var="WXLIBPATH">
172         <if cond="WX_SHARED=='0'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)$(WXCPU)_lib</if>
173         <if cond="WX_SHARED=='1'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)$(WXCPU)_dll</if>
174     </set>
175
176     <set var="WXPORT">
177         <if cond="FORMAT=='msevc4prj'">wince</if>
178         <if cond="FORMAT!='msevc4prj'">msw</if>
179     </set>
180     <set var="WXLIBINCLUDE">$(WXLIBPATH)$(DIRSEP)$(WXPORT)$(WXLIBPOSTFIX)</set>
181
182
183     <!--    All the possible mixes for the wx library names          -->
184     <set var="WXLIB_BASE_NAME">
185         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wxbase$(WX_VERSION)</if>
186         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wxbase$(WX_VERSION)d</if>
187         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wxbase$(WX_VERSION)u</if>
188         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wxbase$(WX_VERSION)ud</if>
189
190         <!--
191             the trick used to support monolithic builds is here: when the
192             <wx-lib>base</wx-lib> tag is found, and user selected
193             WX_MONOLITHIC=1, then the base library is translated to the
194             monolithic library
195         -->
196         <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)</if>
197         <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d</if>
198         <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u</if>
199         <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud</if>
200     </set>
201
202     <!--   Libraries whose name is prefixed with 'wxbase'            -->
203     <set var="WXLIB_NET_NAME">
204         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wxbase$(WX_VERSION)_net</if>
205         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wxbase$(WX_VERSION)d_net</if>
206         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wxbase$(WX_VERSION)u_net</if>
207         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wxbase$(WX_VERSION)ud_net</if>
208     </set>
209     <set var="WXLIB_XML_NAME">
210         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wxbase$(WX_VERSION)_xml</if>
211         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wxbase$(WX_VERSION)d_xml</if>
212         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wxbase$(WX_VERSION)u_xml</if>
213         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wxbase$(WX_VERSION)ud_xml</if>
214     </set>
215     <set var="WXLIB_ODBC_NAME">
216         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wxbase$(WX_VERSION)_odbc</if>
217         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wxbase$(WX_VERSION)d_odbc</if>
218         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wxbase$(WX_VERSION)u_odbc</if>
219         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wxbase$(WX_VERSION)ud_odbc</if>
220     </set>
221
222     <!--   Libraries whose name is prefixed with 'wx' only          -->
223     <set var="WXLIB_CORE_NAME">
224         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_core</if>
225         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_core</if>
226         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_core</if>
227         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_core</if>
228     </set>
229     <set var="WXLIB_MEDIA_NAME">
230         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_media</if>
231         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_media</if>
232         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_media</if>
233         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_media</if>
234     </set>
235     <set var="WXLIB_XRC_NAME">
236         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_xrc</if>
237         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_xrc</if>
238         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_xrc</if>
239         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_xrc</if>
240     </set>
241     <set var="WXLIB_HTML_NAME">
242         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_html</if>
243         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_html</if>
244         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_html</if>
245         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_html</if>
246     </set>
247     <set var="WXLIB_ADV_NAME">
248         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_adv</if>
249         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_adv</if>
250         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_adv</if>
251         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_adv</if>
252     </set>
253     <set var="WXLIB_QA_NAME">
254         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_qa</if>
255         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_qa</if>
256         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_qa</if>
257         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_qa</if>
258     </set>
259     <set var="WXLIB_DBGRID_NAME">
260         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_dbgrid</if>
261         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_dbgrid</if>
262         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_dbgrid</if>
263         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_dbgrid</if>
264     </set>
265     <set var="WXLIB_GL_NAME">
266         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_gl</if>
267         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_gl</if>
268         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_gl</if>
269         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_gl</if>
270     </set>
271
272
273
274
275
276
277     <!--                        WX TEMPLATE                         -->
278     <!--                                                            -->
279     <!--                                                            -->
280     <!--    While not required, templates make your                 -->
281     <!--    bakefiles much more readable.  Templates, in            -->
282     <!--    essence, are abstract classes like c++.                 -->
283     <!--                                                            -->
284     <!--    Your build targets "inherit" the template,              -->
285     <!--    along with the info associated with the template        -->
286
287     <!--                                                            -->
288     <!--                wxWidgets LIBRARY/APP TEMPLATE              -->
289     <!--                                                            -->
290     <!--    The "base class" of all our build targets               -->
291     <!--    This links with the appropriate native                  -->
292     <!--    libraries required by the platform, the libraries       -->
293     <!--    we want for our stuff, and the wxWindows libs.          -->
294
295     <!-- this tag is used to include wx libraries: -->
296     <define-tag name="wx-lib" rules="exe,dll,module">
297         <if cond="value=='base'"><sys-lib>$(WXLIB_BASE_NAME)</sys-lib></if>
298         <if cond="value=='core'"><sys-lib>$(WXLIB_CORE_NAME)</sys-lib></if>
299
300         <if cond="value=='net'"><sys-lib>$(WXLIB_NET_NAME)</sys-lib></if>
301         <if cond="value=='xml'"><sys-lib>$(WXLIB_XML_NAME)</sys-lib></if>
302         <if cond="value=='odbc'"><sys-lib>$(WXLIB_ODBC_NAME)</sys-lib></if>
303
304         <if cond="value=='media'"><sys-lib>$(WXLIB_MEDIA_NAME)</sys-lib></if>
305         <if cond="value=='xrc'"><sys-lib>$(WXLIB_XRC_NAME)</sys-lib></if>
306         <if cond="value=='html'"><sys-lib>$(WXLIB_HTML_NAME)</sys-lib></if>
307         <if cond="value=='adv'"><sys-lib>$(WXLIB_ADV_NAME)</sys-lib></if>
308         <if cond="value=='gl'"><sys-lib>$(WXLIB_GL_NAME)</sys-lib></if>
309         <if cond="value=='dbgrid'"><sys-lib>$(WXLIB_DBGRID_NAME)</sys-lib></if>
310         <if cond="value=='qa'"><sys-lib>$(WXLIB_QA_NAME)</sys-lib></if>
311
312         <!-- wx-lib can be used also to link against contrib libraries
313              (which always have the same name, regardless of WX_MONOLITHIC value) -->
314         <if cond="value in CONTRIBLIB_LIST.split()">
315             <sys-lib>wx$(WXPORT)$(WX_VERSION)$(WXLIBPOSTFIX)_$(value)</sys-lib>
316         </if>
317
318         <if cond="value not in ALLLIB_LIST.split()">
319             <error>Unknown wxWidgets library given in the wx-lib tag</error>
320         </if>
321     </define-tag>
322
323     <!-- just a placeholder to mark the place where <wx-lib> will be placed,
324          thanks to the order precedence declaration below it: -->
325     <define-tag name="__wx-libs-point" rules="exe,dll,module"/>
326     <tag-info name="wx-lib"
327               position="before:__wx-libs-point"/>
328     <tag-info name="__wx-syslibs"
329               position="after:__wx-libs-point"/>
330
331
332     <!-- template for static wx libraries: -->
333     <template id="wx-lib">
334         <!--                    MISCELLANEOUS                       -->
335         <if cond="FORMAT=='mingw'">
336             <define>HAVE_W32API_H</define>
337             <ldflags>-mthreads</ldflags>
338         </if>
339
340         <define>$(WXUNICODE_DEFINE)</define>
341         <define>$(WXDEBUG_DEFINE)</define>
342         <define>__WXMSW__</define>
343
344         <include>$(WX_DIR)$(WXLIBINCLUDE)</include>
345         <include>$(WX_DIR)/include</include>
346     </template>
347
348
349     <!-- this ugly tag contains all sys-lib tags used by "wx" template,
350          in order to make sure they are not reorder when wx-lib is moved
351          after __wx-libs-point: -->
352     <define-tag name="__wx-syslibs" rules="exe,dll,module">
353         <!-- wx 3rd party libs, always use them: -->
354         <sys-lib cond="FORMAT!='msevc4prj'">wxtiff$(WX3RDPARTYLIBPOSTFIX)</sys-lib>
355         <sys-lib>wxjpeg$(WX3RDPARTYLIBPOSTFIX)</sys-lib>
356         <sys-lib>wxpng$(WX3RDPARTYLIBPOSTFIX)</sys-lib>
357         <sys-lib>wxzlib$(WX3RDPARTYLIBPOSTFIX)</sys-lib>
358         <!-- For regex we won't use the WX3RDPARTYLIBPOSTIX postfix:
359              unliked tiff, jpeg, png, zlib, expat, when building
360              in Unicode mode, the "u" suffix is appended to regex -->
361         <sys-lib cond="FORMAT!='msevc4prj'">wxregex$(WXLIBPOSTFIX)</sys-lib>
362         <sys-lib>wxexpat$(WX3RDPARTYLIBPOSTFIX)</sys-lib>
363
364         <!-- link-in system libs that wx depends on: -->
365         <!-- If on borland, we don't need to do much            -->
366         <if cond="FORMAT=='borland'">
367             <sys-lib>ole2w32</sys-lib>
368             <sys-lib>odbc32</sys-lib>
369         </if>
370
371         <!-- Non-borland, on the other hand...                  -->
372         <if cond="FORMAT not in ['borland','msevc4prj']">
373             <sys-lib>kernel32</sys-lib>
374             <sys-lib>user32</sys-lib>
375             <sys-lib>gdi32</sys-lib>
376             <sys-lib>comdlg32</sys-lib>
377             <sys-lib>winspool</sys-lib>
378             <sys-lib>winmm</sys-lib>
379             <sys-lib>shell32</sys-lib>
380             <sys-lib>comctl32</sys-lib>
381             <sys-lib>ole32</sys-lib>
382             <sys-lib>oleaut32</sys-lib>
383             <sys-lib>uuid</sys-lib>
384             <sys-lib>rpcrt4</sys-lib>
385             <sys-lib>advapi32</sys-lib>
386             <sys-lib>wsock32</sys-lib>
387             <sys-lib>odbc32</sys-lib>
388         </if>
389
390         <!-- Libs common to both borland and MSVC               -->
391         <if cond="FORMAT=='msvc' or FORMAT=='msvc6prj' or FORMAT=='borland'">
392             <sys-lib>oleacc</sys-lib>
393         </if>
394     </define-tag>
395
396     <!-- template for wx executables/dlls: -->
397     <template id="wx" template="wx-lib">
398         <lib-path>$(WX_DIR)$(WXLIBPATH)</lib-path>
399
400         <!-- wx libs must come before 3rd party and sys libs, this is
401              the place where the hack explained above is carried on: -->
402         <__wx-libs-point/>
403         <__wx-syslibs/>
404     </template>
405
406 </makefile>