Mercurial > lcfOS
view test/m3_bare/build.xml @ 382:0c44e494ef58
Made lexer more generic
author | Windel Bouwman |
---|---|
date | Sun, 27 Apr 2014 12:24:21 +0200 |
parents | 9667d78ba79e |
children | d056b552d3f4 |
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.bin" layout="m3bare.mmap" objects="start.o;m3bare.o"/> </target> </project>