FreeCalypso > hg > freecalypso-sw
view gsm-fw/L1/cust0/Makefile @ 653:31d82d090499
gsm-fw/cdg: should be ready to run ccdgen
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 25 Sep 2014 09:00:04 +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