FreeCalypso > hg > freecalypso-sw
diff 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 |
line wrap: on
line diff
--- a/gsm-fw/L1/Makefile Thu Oct 22 18:41:05 2015 +0000 +++ b/gsm-fw/L1/Makefile Thu Oct 22 19:04:36 2015 +0000 @@ -1,12 +1,16 @@ LD= arm-elf-ld -SUBDIR= audio_cfile cfile cust0 dsp stand tpudrv +SUBDIR= audio_cfile cfile cust0 dsp dyn_dwl_cfile stand tpudrv sinclude ../include/config.mk INT_PIECES= cfile/iramcode.o cust0/iramcode.o tpudrv/iramcode.o EXT_PIECES= audio_cfile/xipcode.o cfile/xipcode.o cust0/xipcode.o +ifeq (${L1_DYN_DSP_DWNLD},1) +EXT_PIECES+= dyn_dwl_cfile/xipcode.o +endif + ifeq (${CONFIG_L1_STANDALONE},1) EXT_PIECES+= stand/xipcode.o endif @@ -25,6 +29,9 @@ cust0/iramcode.o cust0/xipcode.o: cust0 @true +dyn_dwl_cfile/xipcode.o: dyn_dwl_cfile + @true + stand/xipcode.o: stand @true