view user/build.xml @ 391:a139da1f44f6

Merge
author Windel Bouwman
date Fri, 16 May 2014 12:30:10 +0200
parents d056b552d3f4
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>