samples/build.xml
changeset 119 8147cafd007a
child 120 6715a003e910
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/build.xml	Sat Jun 14 09:54:59 2008 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<project name="apidesign.org" default="build" basedir=".">
     1.6 +    <dirset id="examples" dir=".">
     1.7 +        <include name="**/nbproject"/>
     1.8 +        <exclude name="apifest1/day3-intermezzo/**"/>
     1.9 +    </dirset>
    1.10 +    
    1.11 +    
    1.12 +    <target name="clean">
    1.13 +        <subant target="clean" antfile="../build.xml">
    1.14 +            <dirset refid="examples"/>
    1.15 +        </subant>
    1.16 +    </target>
    1.17 +
    1.18 +    <target name="build">
    1.19 +        <ant dir="libs"/>
    1.20 +        <subant target="compile" antfile="../build.xml">
    1.21 +            <dirset refid="examples"/>
    1.22 +        </subant>
    1.23 +    </target>
    1.24 +    
    1.25 +</project>