1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<?xml version="1.0" ?>
<!-- Created by: Francesco Montorsi <frm@users.sourceforge.net> -->
<!-- Creation date: 9/10/2004 -->
<!-- RCS-ID: $Id$ -->
<makefile>
<!-- Always try to use the very latest bakefile, possibly even
the SVN version ;) -->
<requires version="0.2.3"/>
<set var="USE_UNSTABLE_VERSION" overwrite="0">0</set>
<!-- include the wxpresets and check that they are recent enough -->
<include file="wx.bkl" once="1"/>
<if cond="not isdefined('WX_PRESETS_VERSION') or WX_PRESETS_VERSION not in [ '5' ]">
<error>The included wxWidgets presets are too old!</error>
</if>
<if cond="USE_UNSTABLE_VERSION=='0' and WX_VERSION_DEFAULT!='28' and FORMAT!='gnu'">
<!-- this is to avoid that I (Francesco) erraneously commit presets with 29 as def version -->
<error>Please use the current stable branch as WX_VERSION option default and not $(WX_VERSION_DEFAULT)!</error>
</if>
<!-- Our additional wxCode-specific options -->
<include file="options.bkl" once="1"/>
<!-- Our defaults -->
<include file="defaults.bkl" once="1"/>
<!-- This is a set of some useful new (generic, not wxCode-specific) tags/rules -->
<include file="utils.bkl" once="1"/>
<!-- The wxCode templates/rules -->
<include file="templates.bkl" once="1"/>
<!-- Some optional targets -->
<include file="targets.bkl" once="1"/>
</makefile>
|