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
|
393
|
7
|
377
|
8 <target name="vexpress">
|
393
|
9 <build file="../user/build.xml" />
|
|
10
|
|
11 <assemble source="arch/qemu_vexpress/start.asm"
|
|
12 target="arm" output="start.o" />
|
|
13
|
|
14 <compile target="arm"
|
|
15 sources='arch/qemu_vexpress/vexpressA9.c3'
|
|
16 includes="${src}/*.c3" output="vexp.o" />
|
|
17
|
|
18 <compile target="arm" sources='${src}/*.c3'
|
|
19 output="henkie.o" />
|
|
20
|
|
21 <!-- <script file="gen_table.py" /> -->
|
|
22
|
385
|
23 <link output="kernel.o"
|
|
24 target="arm"
|
389
|
25 layout="arch/qemu_vexpress/layout.mmap"
|
385
|
26 objects="henkie.o;vexp.o;start.o" />
|
393
|
27
|
385
|
28 <objcopy
|
|
29 objectfile="kernel.o"
|
|
30 imagename="image"
|
|
31 output="kernel_arm.bin" />
|
393
|
32
|
377
|
33 </target>
|
|
34
|
|
35 </project>
|
|
36
|