FreeCalypso > hg > freecalypso-sw
diff gsm-fw/L1/audio_cfile/Makefile @ 608:46427440984a
gsm-fw/L1/audio_cfile: l1audio_abb.c compiles
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 29 Aug 2014 04:57:06 +0000 |
parents | |
children | 3121e35f422c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsm-fw/L1/audio_cfile/Makefile Fri Aug 29 04:57:06 2014 +0000 @@ -0,0 +1,16 @@ +CC= arm-elf-gcc +CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \ + -I../tm_include -I../tm_cust0 -I../cust0 -I../tpudrv \ + -DMOVE_IN_INTERNAL_RAM +CFLAGS= -O2 -fno-builtin -mthumb-interwork +LD= arm-elf-ld + +XOBJS= l1audio_abb.o + +all: ${XOBJS} + +${XOBJS}: %.o : %.c + ${CC} ${CFLAGS} ${CPPFLAGS} -mthumb -c $< + +clean: + rm -f *.[oa] *.out *errs