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
|
1
|
|
2 <project name="HelloA9" default="hello">
|
|
3
|
|
4 <target name="hello">
|
|
5 <assemble source="startup_a9.asm" target="arm" output="start.o" />
|
|
6 <compile target="arm" sources='hello.c3' output="hello.o" />
|
|
7 <link objects="start.o;hello.o" output="hello.bin" layout="qemu.mmap" />
|
|
8 </target>
|
|
9 </project>
|
|
10
|