annotate user/build.xml @ 387:34ac19044b8a
Hello world with paging in emulator
author |
Windel Bouwman |
date |
Thu, 01 May 2014 22:09:18 +0200 |
parents |
d056b552d3f4 |
children |
6ae782a085e0 |
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"/>
|
385
|
7 <link output="hello.bin" layout="app.mmap"
|
|
8 target="arm"
|
|
9 objects="hello.o"/>
|
377
|
10 </target>
|
|
11 </project>
|
|
12
|