view gsm-fw/L1/cust0/Makefile @ 542:9dd6ca16f13d

gsm-fw/L1/cust0: split between IRAM and XIP code
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 03 Aug 2014 04:59:30 +0000
parents 1affe428bf72
children 2dccd2b4e5a2
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 -c -o $@ $<

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

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

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