view 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
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_a2.bin" layout="arch/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" />
    </target>

</project>