comparison gsm-fw/L1/cust0/Makefile @ 890:452a4aea3fc5

gsm-fw: implemented reading of Pirelli's factory calibration records
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 29 Jun 2015 21:45:23 +0000
parents 2dccd2b4e5a2
children fa119e49673b
comparison
equal deleted inserted replaced
889:1b1683cda154 890:452a4aea3fc5
2 CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \ 2 CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \
3 -I../tm_include -I../tm_cust0 -I../tpudrv 3 -I../tm_include -I../tm_cust0 -I../tpudrv
4 CFLAGS= -O2 -fno-builtin -mthumb-interwork 4 CFLAGS= -O2 -fno-builtin -mthumb-interwork
5 LD= arm-elf-ld 5 LD= arm-elf-ld
6 6
7 sinclude ../../include/config.mk
8
7 IOBJS= ind_os.o l1_cust_iram.o 9 IOBJS= ind_os.o l1_cust_iram.o
8 XOBJS= l1_cust_xip.o l1_rf12.o 10 XOBJS= l1_cust_xip.o l1_rf12.o
11
12 ifeq (${CONFIG_TARGET_PIRELLI},1)
13 XOBJS+= pirelli.o
14 endif
9 15
10 all: iramcode.o xipcode.o 16 all: iramcode.o xipcode.o
11 17
12 l1_cust_iram.o: l1_cust.c 18 l1_cust_iram.o: l1_cust.c
13 ${CC} ${CFLAGS} ${CPPFLAGS} -DRUN_INT_RAM -c -o $@ $< 19 ${CC} ${CFLAGS} ${CPPFLAGS} -DRUN_INT_RAM -c -o $@ $<