view user/build.xml @ 377:9667d78ba79e

Switched to xml for project description
author Windel Bouwman
date Fri, 11 Apr 2014 15:47:50 +0200
parents
children d056b552d3f4
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" objects="hello.o"/>
    </target>
</project>