annotate user/build.xml @ 381:6df89163e114

Fix section and ldr pseudo instruction
author Windel Bouwman
date Sat, 26 Apr 2014 17:41:56 +0200
parents 9667d78ba79e
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="all">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
3 <target name="all" depends="hello">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 <target name="hello">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6 <compile sources="lib.c3;ipc.c3;hello.c3" target="arm" output="hello.o"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 <link output="hello.bin" layout="app.mmap" objects="hello.o"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
8 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10