377
|
1
|
|
2 <project name="Userspace" default="all">
|
393
|
3 <target name="all" depends="hello,init">
|
|
4 </target>
|
|
5
|
402
|
6 <target name="hello">
|
404
|
7 <compile sources="hello/hello.c3;lib/*.c3"
|
393
|
8 target="arm"
|
402
|
9 output="obj/hello.o"/>
|
|
10 <link output="obj/hello.elf" layout="app.mmap"
|
393
|
11 target="arm"
|
402
|
12 objects="obj/hello.o"/>
|
393
|
13 </target>
|
|
14
|
|
15 <target name="init">
|
402
|
16 <compile sources="init/init.c3;lib/*.c3"
|
393
|
17 target="arm"
|
402
|
18 output="obj/init.o"/>
|
398
|
19
|
393
|
20 <link
|
402
|
21 output="obj/init.elf"
|
393
|
22 layout="app.mmap"
|
|
23 target="arm"
|
402
|
24 objects="obj/init.o" />
|
398
|
25
|
402
|
26 <objcopy objectfile="obj/init.elf"
|
398
|
27 imagename="flash"
|
402
|
28 format="bin"
|
|
29 output="obj/init.bin" />
|
377
|
30 </target>
|
|
31 </project>
|
|
32
|