FreeCalypso > hg > freecalypso-sw
annotate gsm-fw/bsp/abb+spi/Makefile @ 208:2abe6ade042d
gsm-fw FFS integration: ld script magic putting RAMFFS into ext.ram
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Wed, 25 Dec 2013 19:47:54 +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 |
