2003-06-23 15:50:43 -04:00
|
|
|
<?xml version="1.0" ?>
|
2003-07-02 18:29:29 -04:00
|
|
|
<!-- $Id$ -->
|
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<makefile>
|
2003-06-25 12:29:51 -04:00
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<!-- ================================================================= -->
|
2003-06-25 12:29:51 -04:00
|
|
|
<!-- wxBase library -->
|
2003-06-23 15:50:43 -04:00
|
|
|
<!-- ================================================================= -->
|
|
|
|
|
2003-06-25 12:29:51 -04:00
|
|
|
<dll id="basedll" template="wx_dll"
|
2003-06-23 15:50:43 -04:00
|
|
|
cond="SHARED=='1' and MONOLITHIC=='0'">
|
2003-07-02 07:56:47 -04:00
|
|
|
<define>WXMAKINGDLL_BASE</define>
|
2003-06-25 12:29:51 -04:00
|
|
|
<define>wxUSE_BASE=1</define>
|
|
|
|
<define>wxUSE_GUI=0</define>
|
|
|
|
<sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
|
2003-06-23 15:50:43 -04:00
|
|
|
</dll>
|
|
|
|
|
2003-06-25 12:29:51 -04:00
|
|
|
<lib id="baselib" template="wx_lib"
|
2003-06-23 15:50:43 -04:00
|
|
|
cond="SHARED=='0' and MONOLITHIC=='0'">
|
2003-06-25 12:29:51 -04:00
|
|
|
<define>wxUSE_BASE=1</define>
|
|
|
|
<define>wxUSE_GUI=0</define>
|
|
|
|
<sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
|
|
|
|
</lib>
|
|
|
|
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- Main GUI library -->
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
|
|
|
|
<dll id="coredll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2003-07-05 13:11:57 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
2003-07-02 07:56:47 -04:00
|
|
|
<define>WXMAKINGDLL_CORE</define>
|
2003-06-28 09:10:36 -04:00
|
|
|
<define>wxUSE_BASE=0</define>
|
2003-06-25 12:29:51 -04:00
|
|
|
<sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
|
2003-06-30 19:46:11 -04:00
|
|
|
<library>basedll</library>
|
2003-06-25 12:29:51 -04:00
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="corelib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2003-06-28 09:10:36 -04:00
|
|
|
<define>wxUSE_BASE=0</define>
|
2003-06-25 12:29:51 -04:00
|
|
|
<sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
|
2003-06-23 15:50:43 -04:00
|
|
|
</lib>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- wxHTML -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<dll id="htmldll" template="wx_dll"
|
2003-06-25 12:29:51 -04:00
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2003-07-05 13:11:57 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
2003-07-02 07:56:47 -04:00
|
|
|
<define>WXMAKINGDLL_HTML</define>
|
2003-06-23 15:50:43 -04:00
|
|
|
<sources>$(HTML_SRC)</sources>
|
2003-06-30 19:46:11 -04:00
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
2003-06-23 15:50:43 -04:00
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="htmllib" template="wx_lib"
|
2003-06-25 12:29:51 -04:00
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2003-06-23 15:50:43 -04:00
|
|
|
<sources>$(HTML_SRC)</sources>
|
|
|
|
</lib>
|
|
|
|
|
|
|
|
</makefile>
|