FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/bsp/abb+spi/Makefile @ 154:47754cdb6248
abb.c compiles!
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 17 Nov 2013 05:53:10 +0000 |
parents | |
children | e48ea5875df7 |
comparison
equal
deleted
inserted
replaced
153:65efffcb28dc | 154:47754cdb6248 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | |
3 LD= arm-elf-ld | |
4 | |
5 OBJS= abb.o | |
6 | |
7 HDRS= abb.h abb_core_inth.h abb_inline.h abb_inth.h spi_api.h spi_drv.h \ | |
8 spi_env.h spi_pool_size.h spi_process.h spi_task.h | |
9 | |
10 all: xipcode.o | |
11 | |
12 ${OBJS}: ${HDRS} | |
13 | |
14 xipcode.o: ${OBJS} | |
15 ${LD} -r -o $@ ${OBJS} | |
16 | |
17 clean: | |
18 rm -f *.[oa] *errs |