FreeCalypso > hg > freecalypso-citrine
comparison sysglue/Makefile @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 09 Jun 2016 00:02:41 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:75a11d740a02 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -Os -fno-builtin -mthumb-interwork -mthumb | |
3 ASFLAGS=-mthumb-interwork | |
4 LD= arm-elf-ld | |
5 | |
6 OBJS= appinit.o exceptions.o irqfiq.o sysinit.o | |
7 | |
8 all: xipcode.o flashboot.o | |
9 | |
10 flashboot.o: flashboot.S vectors.S | |
11 sysinit.o: sysinit.S vectors.S | |
12 | |
13 xipcode.o: ${OBJS} | |
14 ${LD} -r -o $@ ${OBJS} | |
15 | |
16 clean: | |
17 rm -f *.[oa] *errs |