annotate kernel/build.xml @ 389:2ec730e45ea1

Added check for recursive struct
author Windel Bouwman
date Fri, 16 May 2014 12:29:31 +0200
parents d056b552d3f4
children 6ae782a085e0
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">
389
2ec730e45ea1 Added check for recursive struct
Windel Bouwman
parents: 385
diff changeset
8 <assemble source="arch/qemu_vexpress/start.asm" target="arm" output="start.o" />
2ec730e45ea1 Added check for recursive struct
Windel Bouwman
parents: 385
diff changeset
9 <compile target="arm" sources='arch/qemu_vexpress/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10 <compile target="arm" sources='${src}/*.c3' output="henkie.o" />
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
11 <link output="kernel.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
12 target="arm"
389
2ec730e45ea1 Added check for recursive struct
Windel Bouwman
parents: 385
diff changeset
13 layout="arch/qemu_vexpress/layout.mmap"
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
14 objects="henkie.o;vexp.o;start.o" />
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
15 <objcopy
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
16 objectfile="kernel.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
17 imagename="image"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
18 output="kernel_arm.bin" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
19 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
20
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
21 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
22