]>
Commit | Line | Data |
---|---|---|
1f9e3582 VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
5 | ||
6 | <!-- =============================================================== --> | |
7 | <!-- Templates for out-of-tree Unix makefiles for wxWidgets samples: --> | |
8 | <!-- =============================================================== --> | |
9 | ||
10 | <include file="wxpresets/presets/wx.bkl"/> | |
11 | ||
12 | <template id="wx_app_base" template="wx"> | |
13 | <include>$(SRCDIR)</include> | |
14 | </template> | |
15 | ||
16 | <template id="wx_util" template="wx_app_base"> | |
17 | <app-type>gui</app-type> | |
18 | </template> | |
19 | ||
20 | <template id="wx_util_console" template="wx_app_base"> | |
21 | <app-type>console</app-type> | |
22 | </template> | |
23 | ||
24 | <template id="wx_sample" template="wx_util"/> | |
25 | <template id="wx_sample_console" template="wx_util_console"/> | |
26 | ||
27 | ||
28 | <define-rule name="wx-gui-plugin" extends="module"> | |
29 | <template template="wx_app_base"/> | |
30 | </define-rule> | |
31 | ||
32 | ||
33 | <!-- empty stubs for things that don't make sense for makefile.unx: --> | |
34 | <template id="wx_append"/> | |
35 | <template id="wx_append_base"/> | |
36 | ||
37 | <define-rule name="wx-data" pseudo="1"> | |
38 | <define-tag name="files"/> | |
39 | <define-tag name="dstdir"/> | |
40 | <define-tag name="srcdir"/> | |
41 | </define-rule> | |
42 | ||
43 | </makefile> |