annotate test/m3_bare/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
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"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6 <link output="bare.bin" layout="m3bare.mmap" objects="start.o;m3bare.o"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
8 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9