view user/build.xml @ 385:d056b552d3f4

Made better use of layout
author Windel Bouwman
date Thu, 01 May 2014 14:03:12 +0200
parents 9667d78ba79e
children 6ae782a085e0
line wrap: on
line source


<project name="Userspace" default="all">
   <target name="all" depends="hello">
   </target>
   <target name="hello">
     <compile sources="lib.c3;ipc.c3;hello.c3" target="arm" output="hello.o"/>
     <link output="hello.bin" layout="app.mmap"
        target="arm"
        objects="hello.o"/>
    </target>
</project>