Mercurial > lcfOS
annotate 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 |
rev | line source |
---|---|
377 | 1 |
2 <project name="Userspace" default="all"> | |
3 <target name="all" depends="hello"> | |
4 </target> | |
5 <target name="hello"> | |
6 <compile sources="lib.c3;ipc.c3;hello.c3" target="arm" output="hello.o"/> | |
7 <link output="hello.bin" layout="app.mmap" objects="hello.o"/> | |
8 </target> | |
9 </project> | |
10 |