annotate test/m3_bare/build.xml @ 394:988f3fb861e4

c3 code generator rewrite
author Windel Bouwman
date Thu, 22 May 2014 08:14:12 +0200
parents d056b552d3f4
children
rev   line source
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
1
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
2 <project name="Userspace" default="m3bare">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
3 <target name="m3bare">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4 <assemble source="startup_m3.asm" target="thumb" output="start.o"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 <compile sources="hello.c3" target="thumb" output="m3bare.o"/>
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
6 <link output="bare.o" layout="m3bare.mmap"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
7 target="thumb"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
8 objects="start.o;m3bare.o"/>
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
9 <objcopy
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
10 objectfile="bare.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
11 imagename="flash"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
12 output="bare.bin" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
13 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
14 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
15