2003-06-23 19:50:43 +00:00
|
|
|
<?xml version="1.0" ?>
|
|
|
|
<makefile>
|
|
|
|
|
|
|
|
<include file="common.bkl"/>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- =============================================================== -->
|
|
|
|
<!-- Template for wxWindows samples: -->
|
|
|
|
<!-- =============================================================== -->
|
|
|
|
|
|
|
|
<if cond="FORMAT=='autoconf'">
|
|
|
|
<set var="MACOSX_RESOURCES">
|
|
|
|
<if cond="TOOLKIT=='MAC'">
|
2003-06-30 18:44:43 +00:00
|
|
|
Carbon.r $(LIBDIRNAME)/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r
|
2003-06-23 19:50:43 +00:00
|
|
|
</if>
|
|
|
|
</set>
|
|
|
|
</if>
|
2003-06-27 19:22:12 +00:00
|
|
|
|
|
|
|
<set var="DLLFLAG">
|
|
|
|
<if cond="SHARED=='1'">WXUSINGDLL</if>
|
|
|
|
</set>
|
2003-06-23 19:50:43 +00:00
|
|
|
|
2003-07-01 21:50:34 +00:00
|
|
|
<template id="wx_sample_b" template="wx">
|
2003-06-23 19:50:43 +00:00
|
|
|
<include>$(SRCDIR)</include>
|
|
|
|
<!-- Always link against the wxWin library in monolithic build: -->
|
|
|
|
<sys-lib>$(WXLIB_MONO)</sys-lib>
|
|
|
|
<ldflags>$(SAMPLES_RPATH_FLAG)</ldflags>
|
2003-06-27 19:22:12 +00:00
|
|
|
<define>$(DLLFLAG)</define>
|
2003-07-01 21:50:34 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<template id="wx_sample" template="wx_sample_b">
|
2003-06-27 19:22:12 +00:00
|
|
|
<app-type>gui</app-type>
|
2003-06-23 19:50:43 +00:00
|
|
|
<mac-res cond="FORMAT=='autoconf'">$(MACOSX_RESOURCES)</mac-res>
|
|
|
|
</template>
|
2003-07-01 21:50:34 +00:00
|
|
|
|
|
|
|
<template id="wx_sample_console" template="wx_sample_b">
|
|
|
|
<app-type>console</app-type>
|
|
|
|
</template>
|
2003-06-23 19:50:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- =============================================================== -->
|
|
|
|
<!-- Support for samples data files: -->
|
|
|
|
<!-- =============================================================== -->
|
|
|
|
|
|
|
|
<define-rule name="wx-data" extends="copy-files">
|
|
|
|
<template>
|
|
|
|
<dependency-of>all</dependency-of>
|
|
|
|
<dstdir>$(BUILDDIR)</dstdir>
|
|
|
|
<srcdir>$(SRCDIR)</srcdir>
|
|
|
|
</template>
|
|
|
|
<define-tag name="files">
|
|
|
|
<clean-files>
|
|
|
|
$(' '.join(['$(BUILDDIR)$(DIRSEP)%s'%x for x in value.split()]))
|
|
|
|
</clean-files>
|
|
|
|
</define-tag>
|
|
|
|
</define-rule>
|
|
|
|
|
|
|
|
</makefile>
|