moving bakefile build system to the trunk
[wxWidgets.git] / build / bakefiles / multilib.bkl
1 <?xml version="1.0" ?>
2 <makefile>
3
4     <!-- ================================================================= -->
5     <!--                           Main GUI library                        -->
6     <!-- ================================================================= -->
7     
8     <dll id="coredll" template="wx_dll"
9          cond="SHARED=='1' and MONOLITHIC=='0'">
10         <define>WXMAKINGDLL</define>
11         <sources>$(BASE_SRC) $(CORE_SRC)</sources>
12       
13         <library>$(LIB_ZLIB)</library>
14         <library>$(LIB_REGEX)</library>
15         <library>$(LIB_PNG)</library>
16         <library>$(LIB_JPEG)</library>
17         <library>$(LIB_TIFF)</library>
18         <library>$(LIB_ODBC)</library>
19     </dll>
20     
21     <lib id="corelib" template="wx_lib"
22          cond="SHARED=='0' and MONOLITHIC=='0'">
23         <sources>$(BASE_SRC) $(CORE_SRC)</sources>
24     </lib>
25
26     
27     <!-- ================================================================ -->
28     <!--                               wxHTML                             -->
29     <!-- ================================================================ -->
30     
31     <dll id="htmldll" template="wx_dll"
32          cond="SHARED=='1' and MONOLITHIC=='0'">
33         <define>WXMAKINGDLL</define>
34         <sources>$(HTML_SRC)</sources>
35         <wx-lib>core</wx-lib>
36     </dll>
37     
38     <lib id="htmllib" template="wx_lib"
39          cond="SHARED=='0' and MONOLITHIC=='0'">
40         <sources>$(HTML_SRC)</sources>
41     </lib>
42
43 </makefile>