FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/L1/Makefile @ 927:48969469d961
gsm-fw: l1_dyn_dwl code compiles and links
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Thu, 22 Oct 2015 19:04:36 +0000 |
parents | ab20a5e9dbf3 |
children |
comparison
equal
deleted
inserted
replaced
926:3f178b3ac50a | 927:48969469d961 |
---|---|
1 LD= arm-elf-ld | 1 LD= arm-elf-ld |
2 | 2 |
3 SUBDIR= audio_cfile cfile cust0 dsp stand tpudrv | 3 SUBDIR= audio_cfile cfile cust0 dsp dyn_dwl_cfile stand tpudrv |
4 | 4 |
5 sinclude ../include/config.mk | 5 sinclude ../include/config.mk |
6 | 6 |
7 INT_PIECES= cfile/iramcode.o cust0/iramcode.o tpudrv/iramcode.o | 7 INT_PIECES= cfile/iramcode.o cust0/iramcode.o tpudrv/iramcode.o |
8 EXT_PIECES= audio_cfile/xipcode.o cfile/xipcode.o cust0/xipcode.o | 8 EXT_PIECES= audio_cfile/xipcode.o cfile/xipcode.o cust0/xipcode.o |
9 | |
10 ifeq (${L1_DYN_DSP_DWNLD},1) | |
11 EXT_PIECES+= dyn_dwl_cfile/xipcode.o | |
12 endif | |
9 | 13 |
10 ifeq (${CONFIG_L1_STANDALONE},1) | 14 ifeq (${CONFIG_L1_STANDALONE},1) |
11 EXT_PIECES+= stand/xipcode.o | 15 EXT_PIECES+= stand/xipcode.o |
12 endif | 16 endif |
13 | 17 |
23 @true | 27 @true |
24 | 28 |
25 cust0/iramcode.o cust0/xipcode.o: cust0 | 29 cust0/iramcode.o cust0/xipcode.o: cust0 |
26 @true | 30 @true |
27 | 31 |
32 dyn_dwl_cfile/xipcode.o: dyn_dwl_cfile | |
33 @true | |
34 | |
28 stand/xipcode.o: stand | 35 stand/xipcode.o: stand |
29 @true | 36 @true |
30 | 37 |
31 tpudrv/iramcode.o: tpudrv | 38 tpudrv/iramcode.o: tpudrv |
32 @true | 39 @true |