]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" ?> | |
2 | <!-- $Id$ --> | |
3 | <makefile> | |
4 | ||
5 | <set var="MONOLIB_GUI_SRC"> | |
6 | <if cond="USE_GUI=='1'">$(CORE_SRC) $(HTML_SRC)</if> | |
7 | </set> | |
8 | <set var="MONOLIB_SRC"> | |
9 | $(BASE_SRC) $(BASE_AND_GUI_SRC) $(MONOLIB_GUI_SRC) $(XML_SRC) | |
10 | </set> | |
11 | ||
12 | <dll id="monodll" template="wx_dll" | |
13 | cond="SHARED=='1' and MONOLITHIC=='1'"> | |
14 | <define>wxUSE_BASE=1</define> | |
15 | <define>WXMAKINGDLL</define> | |
16 | <sources>$(MONOLIB_SRC)</sources> | |
17 | <ldlibs>$(EXTRALIBS_XML)</ldlibs> | |
18 | </dll> | |
19 | ||
20 | <lib id="monolib" template="wx_lib" | |
21 | cond="SHARED=='0' and MONOLITHIC=='1'"> | |
22 | <define>wxUSE_BASE=1</define> | |
23 | <sources>$(MONOLIB_SRC)</sources> | |
24 | </lib> | |
25 | ||
26 | </makefile> |