FreeCalypso > hg > freecalypso-sw
annotate gsm-fw/bsp/abb+spi/Makefile @ 464:14d2a7f473c3
OSL: os_tim_ir.c reconstruction by Das Signal
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Thu, 26 Jun 2014 03:23:29 +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: 
154diff
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 | 
