FreeCalypso > hg > freecalypso-sw
annotate gsm-fw/bsp/abb+spi/Makefile @ 303:61c68a55f2a2
fc-fsio: readlink implemented
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 02 Mar 2014 04:48:33 +0000 |
parents | e48ea5875df7 |
children | 05342cadbaf1 |
rev | line source |
---|---|
154 | 1 CC= arm-elf-gcc |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | |
3 LD= arm-elf-ld | |
4 | |
157
e48ea5875df7
gsm-fw: SPI task code compiles and links
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
154
diff
changeset
|
5 OBJS= abb.o spi_api.o spi_drv.o spi_env.o spi_process.o spi_task.o |
154 | 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 |