annotate kernel/build.xml @ 381:6df89163e114
Fix section and ldr pseudo instruction
author |
Windel Bouwman |
date |
Sat, 26 Apr 2014 17:41:56 +0200 |
parents |
78c27013f02e |
children |
d056b552d3f4 |
rev |
line source |
377
|
1
|
|
2 <project name="lcfos-kernel" default="vexpress">
|
|
3
|
|
4 <property name="src" value="src" />
|
379
|
5 <property name="arch" value="arm" />
|
377
|
6
|
|
7 <target name="vexpress">
|
381
|
8 <assemble source="arch/qemu_vexpress/startup_a9.asm" target="arm" output="start.o" />
|
377
|
9 <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" />
|
|
10 <compile target="arm" sources='${src}/*.c3' output="henkie.o" />
|
379
|
11 <link output="kernel_arm.bin" layout="arch/qemu_vexpress/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" />
|
377
|
12 </target>
|
|
13
|
|
14 </project>
|
|
15
|