annotate examples/c3/build.xml @ 385:d056b552d3f4

Made better use of layout
author Windel Bouwman
date Thu, 01 May 2014 14:03:12 +0200
parents 9667d78ba79e
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