Mercurial > lcfOS
annotate test/m3_bare/build.xml @ 379:78c27013f02e
Removed old recipes
author | Windel Bouwman |
---|---|
date | Fri, 18 Apr 2014 11:20:11 +0200 |
parents | 9667d78ba79e |
children | d056b552d3f4 |
rev | line source |
---|---|
377 | 1 |
2 <project name="Userspace" default="m3bare"> | |
3 <target name="m3bare"> | |
4 <assemble source="startup_m3.asm" target="thumb" output="start.o"/> | |
5 <compile sources="hello.c3" target="thumb" output="m3bare.o"/> | |
6 <link output="bare.bin" layout="m3bare.mmap" objects="start.o;m3bare.o"/> | |
7 </target> | |
8 </project> | |
9 |