annotate kernel/build.xml @ 379:78c27013f02e

Removed old recipes
author Windel Bouwman
date Fri, 18 Apr 2014 11:20:11 +0200
parents 83b462f14e67
children 6df89163e114
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" />
379
78c27013f02e Removed old recipes
Windel Bouwman
parents: 378
diff changeset
5 <property name="arch" value="arm" />
377
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" />
379
78c27013f02e Removed old recipes
Windel Bouwman
parents: 378
diff changeset
11 <link output="kernel_arm.bin" layout="arch/qemu_vexpress/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" />
377
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