diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/qemu_a9_hello/build.xml	Fri Apr 11 15:47:50 2014 +0200
@@ -0,0 +1,10 @@
+
+<project name="HelloA9" default="hello">
+
+    <target name="hello">
+        <assemble source="startup_a9.asm" target="arm" output="start.o" />
+        <compile target="arm" sources='hello.c3' output="hello.o" />
+        <link objects="start.o;hello.o" output="hello.bin" layout="qemu.mmap" />
+    </target>
+</project>
+