annotate examples/c3/build.xml @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +0100
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="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" />
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
13 <link output="burn2.bin" layout="stm32f4.mmap"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
14 target="thumb"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
15 objects="startup.o;burn2.o" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
16 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
17
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
18 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
19