]>
Commit | Line | Data |
---|---|---|
ddf98968 | 1 | <?xml version="1.0" ?> |
52de10ef VS |
2 | <!-- $Id$ --> |
3 | ||
ddf98968 VS |
4 | <makefile> |
5 | ||
ddf98968 | 6 | <include file="common.bkl"/> |
52de10ef | 7 | <set var="file_common_samples_included">1</set> |
ddf98968 VS |
8 | |
9 | <!-- =============================================================== --> | |
77ffb593 | 10 | <!-- Template for wxWidgets samples: --> |
ddf98968 VS |
11 | <!-- =============================================================== --> |
12 | ||
13 | <if cond="FORMAT=='autoconf'"> | |
14 | <set var="MACOSX_RESOURCES"> | |
15 | <if cond="TOOLKIT=='MAC'"> | |
d391f667 | 16 | Carbon.r sample.r |
ddf98968 VS |
17 | </if> |
18 | </set> | |
19 | </if> | |
cdc0282e VS |
20 | |
21 | <set var="DLLFLAG"> | |
22 | <if cond="SHARED=='1'">WXUSINGDLL</if> | |
23 | </set> | |
ddf98968 | 24 | |
a69544bf | 25 | <template id="wx_util_b" template="wx"> |
ddf98968 | 26 | <include>$(SRCDIR)</include> |
cdc0282e | 27 | <define>$(DLLFLAG)</define> |
4574209d VS |
28 | </template> |
29 | ||
a69544bf | 30 | <template id="wx_util" template="wx_util_b"> |
cdc0282e | 31 | <app-type>gui</app-type> |
ddf98968 | 32 | <mac-res cond="FORMAT=='autoconf'">$(MACOSX_RESOURCES)</mac-res> |
b6dc1b90 VS |
33 | <!-- resource files includes: --> |
34 | <include>$(SRCDIR)/$(WXTOPDIR)samples</include> | |
35 | <!-- this include is not added via <include> for autoconf, see | |
36 | common.bkl: --> | |
37 | <res-include cond="FORMAT=='autoconf'"> | |
38 | $(TOP_SRCDIR)include | |
39 | </res-include> | |
40 | ||
e54bb212 | 41 | <win32-res>$(WXTOPDIR)samples/sample.rc</win32-res> |
9e983cb2 VS |
42 | <if cond="FORMAT=='autoconf'"> |
43 | <wx-os2-lib-resource/> | |
44 | </if> | |
649f7053 VS |
45 | |
46 | <!-- FIXME: temporary, until bakefile can reuse existing pch files --> | |
47 | <if cond="FORMAT!='autoconf'"> | |
48 | <define>NOPCH</define> | |
49 | </if> | |
ddf98968 | 50 | </template> |
4574209d | 51 | |
a69544bf | 52 | <template id="wx_util_console" template="wx_util_b"> |
4574209d | 53 | <app-type>console</app-type> |
070e8453 | 54 | <define>wxUSE_GUI=0</define> |
4574209d | 55 | </template> |
a69544bf VS |
56 | |
57 | <template id="wx_sample" template="wx_util"> | |
ef0add05 | 58 | <if cond="FORMAT=='autoconf'"> |
425c0d76 | 59 | <wx-mac-app-bundle/> |
ef0add05 | 60 | <ldflags>$(SAMPLES_RPATH_FLAG)</ldflags> |
2fd4bec3 | 61 | <postlink-command>$(SAMPLES_RPATH_POSTLINK)</postlink-command> |
ef0add05 | 62 | </if> |
a69544bf VS |
63 | </template> |
64 | <template id="wx_sample_console" template="wx_util_console"> | |
ef0add05 VS |
65 | <if cond="FORMAT=='autoconf'"> |
66 | <ldflags>$(SAMPLES_RPATH_FLAG)</ldflags> | |
2fd4bec3 | 67 | <postlink-command>$(SAMPLES_RPATH_POSTLINK)</postlink-command> |
ef0add05 | 68 | </if> |
a69544bf | 69 | </template> |
670ec357 | 70 | |
ddf98968 VS |
71 | |
72 | <!-- =============================================================== --> | |
73 | <!-- Support for samples data files: --> | |
74 | <!-- =============================================================== --> | |
75 | ||
76 | <define-rule name="wx-data" extends="copy-files"> | |
77 | <template> | |
78 | <dependency-of>all</dependency-of> | |
79 | <dstdir>$(BUILDDIR)</dstdir> | |
80 | <srcdir>$(SRCDIR)</srcdir> | |
81 | </template> | |
52de10ef VS |
82 | |
83 | <!-- | |
84 | VS - FIXME: | |
85 | Don't clean the files because it would wipe out sources files if | |
86 | BUILDDIR==SRCDIR. This is same behaviour as in the old build system, | |
87 | but it would be better to delete the files during "make clean" if | |
88 | BUILDDIR!=SRCDIR. | |
89 | ||
ddf98968 VS |
90 | <define-tag name="files"> |
91 | <clean-files> | |
92 | $(' '.join(['$(BUILDDIR)$(DIRSEP)%s'%x for x in value.split()])) | |
93 | </clean-files> | |
94 | </define-tag> | |
52de10ef | 95 | --> |
ddf98968 | 96 | </define-rule> |
9e983cb2 VS |
97 | |
98 | ||
99 | <!-- =============================================================== --> | |
100 | <!-- Misc platform specialities: --> | |
101 | <!-- =============================================================== --> | |
ddf98968 | 102 | |
425c0d76 VS |
103 | <if cond="FORMAT=='autoconf'"> |
104 | <include file="mac_bundles.bkl"/> | |
9e983cb2 VS |
105 | |
106 | <!-- | |
107 | A hack to include precompiled OS/2 resource file in apps instead of | |
108 | compiling it from .rc file (gcc on OS/2 doesn't ship with resource | |
109 | compiler): | |
110 | --> | |
111 | <define-tag name="wx-os2-lib-resource" rules="exe"> | |
112 | <set var="os2_lib_res"> | |
113 | <if cond="PLATFORM_OS2=='1'"> | |
114 | $(TOP_SRCDIR)include/wx/os2/wx.res | |
115 | </if> | |
116 | </set> | |
117 | <set var="__objects" append="1">$(os2_lib_res)</set> | |
118 | </define-tag> | |
425c0d76 | 119 | </if> |
9e983cb2 | 120 | |
425c0d76 | 121 | |
ddf98968 | 122 | </makefile> |