Changeset 2163 for trunk/kBuild/doc/QuickReference-kmk.html
- Timestamp:
- Dec 30, 2008, 1:57:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/doc/QuickReference-kmk.html
r2161 r2163 841 841 </pre> 842 842 </blockquote> 843 <p> (Mostly) BooleanFunctions:</p>843 <p>Boolean and Conditional Functions:</p> 844 844 <blockquote> 845 845 <p>Condition is false if the <tt class="docutils literal"><span class="pre">condition</span></tt> evaluates to an empty string … … 879 879 <p>Same as <tt class="docutils literal"><span class="pre">$(if</span> <span class="pre">)</span></tt> execpt that the condition is a <tt class="docutils literal"><span class="pre">kmk</span></tt> expression:</p> 880 880 <pre class="literal-block"> 881 $(if kmk-expression,true-part[,false-part]) 881 $(if-expr kmk-expression,true-part[,false-part]) 882 </pre> 883 <p>Select the first true condition (<tt class="docutils literal"><span class="pre">kmk</span></tt> expression) and expand the 884 following body. Special condition strings <tt class="docutils literal"><span class="pre">default</span></tt> and <tt class="docutils literal"><span class="pre">otherwise</span></tt>:</p> 885 <pre class="literal-block"> 886 $(select when1-cond, when1-body[, whenN-cond, whenN-body]) 882 887 </pre> 883 888 <p>Evalutate the <tt class="docutils literal"><span class="pre">kmk</span></tt> expression returning what it evalues as. This is
Note:
See TracChangeset
for help on using the changeset viewer.