view gsm-fw/L1/cust0/Makefile @ 554:3a0ce0ea4035

gsm-fw/L1/tpudrv/tpudrv.h: Leonardo version replaced with LoCosto-based one; l1dmacro_rx_nb() and l1dmacro_rx_cont() prototypes fixed not to include the csf_filter_choice parameter in the Calypso configuration
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 04 Aug 2014 04:57:24 +0000
parents 2dccd2b4e5a2
children 452a4aea3fc5
line wrap: on
line source

CC=	arm-elf-gcc
CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \
	-I../tm_include -I../tm_cust0 -I../tpudrv
CFLAGS=	-O2 -fno-builtin -mthumb-interwork
LD=	arm-elf-ld

IOBJS=	ind_os.o l1_cust_iram.o
XOBJS=	l1_cust_xip.o l1_rf12.o

all:	iramcode.o xipcode.o

l1_cust_iram.o:	l1_cust.c
	${CC} ${CFLAGS} ${CPPFLAGS} -DRUN_INT_RAM -c -o $@ $<

l1_cust_xip.o:	l1_cust.c
	${CC} ${CFLAGS} ${CPPFLAGS} -DRUN_FLASH -mthumb -c -o $@ $<

iramcode.o:	${IOBJS}
	${LD} -r -o $@ ${IOBJS}

xipcode.o:	${XOBJS}
	${LD} -r -o $@ ${XOBJS}

clean:
	rm -f *.[oa] *.out *errs