Mercurial > lcfOS
view kernel/build.xml @ 378:83b462f14e67
Small fix
author | Windel Bouwman |
---|---|
date | Fri, 11 Apr 2014 15:50:20 +0200 |
parents | 9667d78ba79e |
children | 78c27013f02e |
line wrap: on
line source
<project name="lcfos-kernel" default="vexpress"> <property name="src" value="src" /> <property name="arch" value="arm"/> <target name="vexpress"> <assemble source="startup_a9.asm" target="arm" output="start.o" /> <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" /> <compile target="arm" sources='${src}/*.c3' output="henkie.o" /> <link output="kernel_arm.bin" layout="arch/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" /> </target> </project>