annotate 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
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="lcfos-kernel" default="vexpress">
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 <property name="src" value="src" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 <property name="arch" value="arm"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 <target name="vexpress">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
8 <assemble source="startup_a9.asm" target="arm" output="start.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9 <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10 <compile target="arm" sources='${src}/*.c3' output="henkie.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
11 <link output="kernel_a2.bin" layout="arch/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
12 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
13
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
14 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
15