FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/L1/cfile/Makefile @ 549:b1e2dbb3c751
L1: l1_async.c compiles
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 03 Aug 2014 17:25:07 +0000 |
parents | 32f7494783db |
children | 6455c06fceb3 |
comparison
equal
deleted
inserted
replaced
548:67ab5f240b7d | 549:b1e2dbb3c751 |
---|---|
1 CC= arm-elf-gcc | 1 CC= arm-elf-gcc |
2 CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \ | 2 CPPFLAGS=-I../../include -I../include -I../audio_include -I../audio_cust0 \ |
3 -I../tm_include -I../tm_cust0 -I../tpudrv | 3 -I../tm_include -I../tm_cust0 -I../tpudrv -DMOVE_IN_INTERNAL_RAM |
4 CFLAGS= -O2 -fno-builtin -mthumb-interwork | 4 CFLAGS= -O2 -fno-builtin -mthumb-interwork |
5 LD= arm-elf-ld | 5 LD= arm-elf-ld |
6 | 6 |
7 IOBJS= l1_api_hisr.o | 7 IOBJS= l1_api_hisr.o |
8 XOBJS= l1_afunc.o | 8 XOBJS= l1_afunc.o l1_async.o |
9 | 9 |
10 all: ${IOBJS} ${XOBJS} | 10 all: ${IOBJS} ${XOBJS} |
11 | 11 |
12 ${XOBJS}: %.o : %.c | 12 ${XOBJS}: %.o : %.c |
13 ${CC} ${CFLAGS} ${CPPFLAGS} -mthumb -c $< | 13 ${CC} ${CFLAGS} ${CPPFLAGS} -mthumb -c $< |