]>
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 |
15e8daec VS |
14 | treelay.cpp |
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> | |
41 | <sources>$(DEPRECATED_SRC)</sources> | |
42 | <wx-lib>core</wx-lib> | |
43 | <wx-lib>base</wx-lib> | |
44 | </dll> | |
45 | ||
46 | <lib id="deprecatedlib" template="wx_contrib_lib" cond="SHARED=='0'"> | |
47 | <sources>$(DEPRECATED_SRC)</sources> | |
48 | </lib> | |
dd672d67 VS |
49 | |
50 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">deprecated=deprecateddll+deprecatedlib</set> | |
15e8daec VS |
51 | |
52 | </makefile> | |
53 |