annotate examples/c3/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="Examples" default="all">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
3
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4 <target name="all" depends="burn2">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 <property name="src" value="src" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
8 <property name="arch" value="arm"/>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10 <target name="burn2">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
11 <assemble source="startup_stm32f4.asm" target="thumb" output="startup.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
12 <compile target="thumb" sources="burn2.c3" includes="stm32f4xx.c3" output="burn2.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
13 <link output="burn2.bin" layout="stm32f4.mmap" objects="startup.o;burn2.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
14 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
15
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
16 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
17