annotate examples/qemu_a9_hello/build.xml @ 377:9667d78ba79e

Switched to xml for project description
author Windel Bouwman
date Fri, 11 Apr 2014 15:47:50 +0200
parents
children d056b552d3f4
rev   line source
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
1
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
2 <project name="HelloA9" default="hello">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
3
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4 <target name="hello">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 <assemble source="startup_a9.asm" target="arm" output="start.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6 <compile target="arm" sources='hello.c3' output="hello.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 <link objects="start.o;hello.o" output="hello.bin" layout="qemu.mmap" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
8 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10