aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/appl/build.xml
blob: 6737ee57831cd9cdf0123cad7675ea3861522eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- make multiple targets with antelope -->
<project name="amForth" basedir="." default="release">
<target name="release">
  <ant antfile="build.xml" dir="arduino" target="compile" inheritAll="false"/>
</target>
<target name="clean">
  <ant antfile="build.xml"  dir="arduino" target="clean" inheritAll="false"/>
  <ant antfile="build.xml" dir="template" target="clean" inheritAll="false"/>
  <ant antfile="build.xml" dir="eval-pollin" target="clean" inheritAll="false"/>
  <ant antfile="build.xml" dir="atmega2561" target="clean" inheritAll="false"/>
  <ant antfile="build.xml" dir="launchpad430" target="clean" inheritAll="false"/>
</target>
<target name="compile">
  <ant antfile="build.xml"  dir="arduino" target="compile" inheritAll="false"/>
  <ant antfile="build.xml" dir="template" target="compile" inheritAll="false"/>
  <ant antfile="build.xml" dir="eval-pollin" target="compile" inheritAll="false"/>
  <ant antfile="build.xml" dir="atmega2561" target="compile" inheritAll="false"/>
  <ant antfile="build.xml" dir="launchpad430" target="compile" inheritAll="false"/>
</target>
</project>