]>
Commit | Line | Data |
---|---|---|
15e8daec VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
5 | ||
6 | <include file="../../../build/bakefiles/common_contrib.bkl"/> | |
7 | ||
8 | <set var="DEPRECATED_SRC" hints="files"> | |
9 | prop.cpp | |
10 | propform.cpp | |
11 | proplist.cpp | |
12 | resource.cpp | |
8a82c9ec | 13 | tbarsmpl.cpp |
21041c70 | 14 | treelay.cpp |
15e8daec VS |
15 | wxexpr.cpp |
16 | ||
17 | <!-- | |
18 | these should be generated from lexer.l and parser.y, but | |
19 | since this is deprecated anyway, why bother? | |
20 | --> | |
21 | dosyacc.c | |
22 | </set> | |
23 | ||
24 | <headers template="wx_contrib_headers"> | |
25 | <files> | |
26 | wx/deprecated/expr.h | |
27 | wx/deprecated/prop.h | |
28 | wx/deprecated/propform.h | |
29 | wx/deprecated/proplist.h | |
30 | wx/deprecated/resource.h | |
31 | wx/deprecated/setup.h | |
8a82c9ec | 32 | wx/deprecated/tbarsmpl.h |
15e8daec VS |
33 | wx/deprecated/treelay.h |
34 | wx/deprecated/wxexpr.h | |
35 | </files> | |
36 | </headers> | |
37 | ||
38 | <dll id="deprecateddll" template="wx_contrib_dll" cond="SHARED=='1'"> | |
39 | <define>WXUSINGDLL</define> | |
40 | <define>WXMAKINGDLL_DEPRECATED</define> | |
21041c70 | 41 | <include>$(SRCDIR)</include> |
15e8daec VS |
42 | <sources>$(DEPRECATED_SRC)</sources> |
43 | <wx-lib>core</wx-lib> | |
44 | <wx-lib>base</wx-lib> | |
48ccbb38 | 45 | <precomp-headers-exclude>dosyacc.c</precomp-headers-exclude> |
15e8daec VS |
46 | </dll> |
47 | ||
48 | <lib id="deprecatedlib" template="wx_contrib_lib" cond="SHARED=='0'"> | |
21041c70 | 49 | <include>$(SRCDIR)</include> |
15e8daec | 50 | <sources>$(DEPRECATED_SRC)</sources> |
48ccbb38 | 51 | <precomp-headers-exclude>dosyacc.c</precomp-headers-exclude> |
15e8daec | 52 | </lib> |
dd672d67 | 53 | |
fdec2f7d | 54 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">deprecated=deprecatedlib+deprecateddll</set> |
15e8daec VS |
55 | |
56 | </makefile> | |
57 |