FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/services/ffs/Makefile @ 209:6f4a12b4582f
gsm-fw FFS: starting to integrate C code
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 26 Dec 2013 03:59:59 +0000 |
parents | |
children | 1d87b335fc50 |
comparison
equal
deleted
inserted
replaced
208:2abe6ade042d | 209:6f4a12b4582f |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | |
3 LD= arm-elf-ld | |
4 | |
5 OBJS= drv.o | |
6 | |
7 HDRS= core.h drv.h ffs.h ffs_api.h ffs_env.h ffs_pool_size.h ffstrace.h \ | |
8 intctl.h ramffs.h | |
9 | |
10 all: xipcode.o | |
11 | |
12 ${OBJS}: ${HDRS} | |
13 | |
14 xipcode.o: ${OBJS} | |
15 ${LD} -r -o $@ ${OBJS} | |
16 | |
17 clean: | |
18 rm -f *.[oa] *errs |