]>
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 | |
13 | treelay.cpp | |
14 | wxexpr.cpp | |
15 | ||
16 | <!-- | |
17 | these should be generated from lexer.l and parser.y, but | |
18 | since this is deprecated anyway, why bother? | |
19 | --> | |
20 | dosyacc.c | |
21 | </set> | |
22 | ||
23 | <headers template="wx_contrib_headers"> | |
24 | <files> | |
25 | wx/deprecated/expr.h | |
26 | wx/deprecated/prop.h | |
27 | wx/deprecated/propform.h | |
28 | wx/deprecated/proplist.h | |
29 | wx/deprecated/resource.h | |
30 | wx/deprecated/setup.h | |
31 | wx/deprecated/treelay.h | |
32 | wx/deprecated/wxexpr.h | |
33 | </files> | |
34 | </headers> | |
35 | ||
36 | <dll id="deprecateddll" template="wx_contrib_dll" cond="SHARED=='1'"> | |
37 | <define>WXUSINGDLL</define> | |
38 | <define>WXMAKINGDLL_DEPRECATED</define> | |
239741ff | 39 | <include>$(SRCDIR)</include> |
15e8daec VS |
40 | <sources>$(DEPRECATED_SRC)</sources> |
41 | <wx-lib>core</wx-lib> | |
42 | <wx-lib>base</wx-lib> | |
43 | </dll> | |
44 | ||
45 | <lib id="deprecatedlib" template="wx_contrib_lib" cond="SHARED=='0'"> | |
239741ff | 46 | <include>$(SRCDIR)</include> |
15e8daec VS |
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 |