FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/L1/cfile/Makefile @ 546:c7e53436c451
L1: starting to compile core C files
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 03 Aug 2014 06:58:00 +0000 |
parents | |
children | 32f7494783db |
comparison
equal
deleted
inserted
replaced
545:cc584a357886 | 546:c7e53436c451 |
---|---|
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../tpudrv | |
4 CFLAGS= -O2 -fno-builtin -mthumb-interwork | |
5 LD= arm-elf-ld | |
6 | |
7 IOBJS= | |
8 XOBJS= l1_afunc.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 |