view test/m3_bare/build.xml @ 389:2ec730e45ea1

Added check for recursive struct
author Windel Bouwman
date Fri, 16 May 2014 12:29:31 +0200
parents d056b552d3f4
children
line wrap: on
line source


<project name="Userspace" default="m3bare">
   <target name="m3bare">
     <assemble source="startup_m3.asm" target="thumb" output="start.o"/>
     <compile sources="hello.c3" target="thumb" output="m3bare.o"/>
     <link output="bare.o" layout="m3bare.mmap"
        target="thumb"
        objects="start.o;m3bare.o"/>
        <objcopy
            objectfile="bare.o"
            imagename="flash"
            output="bare.bin" />
    </target>
</project>