FreeCalypso > hg > freecalypso-sw
diff gsm-fw/services/etm/Makefile @ 165:9dbf3248a197
starting to compile ETM
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 19 Nov 2013 04:23:29 +0000 |
parents | |
children | 13af69b6a3dc |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsm-fw/services/etm/Makefile Tue Nov 19 04:23:29 2013 +0000 @@ -0,0 +1,18 @@ +CC= arm-elf-gcc +CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb +LD= arm-elf-ld + +OBJS= etm_api.o + +HDRS= etm.h etm_api.h etm_at.h etm_audio_err.h etm_config.h etm_env.h \ + etm_messages_i.h etm_misc.h etm_pool_size.h etm_trace.h etm_version.h + +all: xipcode.o + +${OBJS}: ${HDRS} + +xipcode.o: ${OBJS} + ${LD} -r -o $@ ${OBJS} + +clean: + rm -f *.[oa] *errs