FreeCalypso > hg > freecalypso-sw
comparison 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 |
comparison
equal
deleted
inserted
replaced
607:262fcce10859 | 608:46427440984a |
---|---|
1 CC= arm-elf-gcc | |
2 CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \ | |
3 -I../tm_include -I../tm_cust0 -I../cust0 -I../tpudrv \ | |
4 -DMOVE_IN_INTERNAL_RAM | |
5 CFLAGS= -O2 -fno-builtin -mthumb-interwork | |
6 LD= arm-elf-ld | |
7 | |
8 XOBJS= l1audio_abb.o | |
9 | |
10 all: ${XOBJS} | |
11 | |
12 ${XOBJS}: %.o : %.c | |
13 ${CC} ${CFLAGS} ${CPPFLAGS} -mthumb -c $< | |
14 | |
15 clean: | |
16 rm -f *.[oa] *.out *errs |