annotate test/m3_bare/build.xml @ 385:d056b552d3f4
Made better use of layout
author |
Windel Bouwman |
date |
Thu, 01 May 2014 14:03:12 +0200 |
parents |
9667d78ba79e |
children |
|
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"/>
|
385
|
6 <link output="bare.o" layout="m3bare.mmap"
|
|
7 target="thumb"
|
|
8 objects="start.o;m3bare.o"/>
|
|
9 <objcopy
|
|
10 objectfile="bare.o"
|
|
11 imagename="flash"
|
|
12 output="bare.bin" />
|
377
|
13 </target>
|
|
14 </project>
|
|
15
|