Mercurial > lcfOS
comparison 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 |
comparison
equal
deleted
inserted
replaced
376:1e951e71d3f1 | 377:9667d78ba79e |
---|---|
1 | |
2 <project name="lcfos-kernel" default="vexpress"> | |
3 | |
4 <property name="src" value="src" /> | |
5 <property name="arch" value="arm"/> | |
6 | |
7 <target name="vexpress"> | |
8 <assemble source="startup_a9.asm" target="arm" output="start.o" /> | |
9 <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" /> | |
10 <compile target="arm" sources='${src}/*.c3' output="henkie.o" /> | |
11 <link output="kernel_a2.bin" layout="arch/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" /> | |
12 </target> | |
13 | |
14 </project> | |
15 |