diff kernel/build.xml @ 377:9667d78ba79e

Switched to xml for project description
author Windel Bouwman
date Fri, 11 Apr 2014 15:47:50 +0200
parents
children 83b462f14e67
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/kernel/build.xml	Fri Apr 11 15:47:50 2014 +0200
@@ -0,0 +1,15 @@
+
+<project name="lcfos-kernel" default="vexpress">
+
+    <property name="src" value="src" />
+    <property name="arch" value="arm"/>
+
+    <target name="vexpress">
+        <assemble source="startup_a9.asm" target="arm" output="start.o" />
+        <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" />
+        <compile target="arm" sources='${src}/*.c3' output="henkie.o" />
+        <link output="kernel_a2.bin" layout="arch/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" />
+    </target>
+
+</project>
+