FreeCalypso > hg > freecalypso-citrine
comparison bsp/abb+spi/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= -O2 -fno-builtin -mthumb-interwork -mthumb | |
3 LD= arm-elf-ld | |
4 | |
5 sinclude ../../include/config.mk | |
6 | |
7 OBJS= abb.o spi_api.o spi_drv.o spi_env.o spi_process.o spi_task.o | |
8 | |
9 ifeq (${CONFIG_INCLUDE_L1},1) | |
10 OBJS+= abb_core_inth.o abb_inth.o | |
11 endif | |
12 | |
13 HDRS= abb.h abb_core_inth.h abb_inline.h abb_inth.h spi_api.h spi_drv.h \ | |
14 spi_env.h spi_pool_size.h spi_process.h spi_task.h | |
15 | |
16 all: xipcode.o | |
17 | |
18 ${OBJS}: ${HDRS} | |
19 | |
20 xipcode.o: ${OBJS} | |
21 ${LD} -r -o $@ ${OBJS} | |
22 | |
23 clean: | |
24 rm -f *.[oa] *errs |