'include' now fails if there is no file; 'softinclude' isn't
[k8jam.git] / misc / Jamfile.rulearg
blob17fa17c6fe2bbc842becf89106123015d21180bb
1 a0 = "wow";
3 rule test a0:a1{
4   echo "<:" $(<);
5   echo ">:" $(>);
6   echo "a0:" $(a0);
7   echo "a1:" $(a1);
11 test a;
12 test a b;
13 test a b:c;
14 test a b:c d;
16 echo $(a0);