view gsm-fw/services/ffs/Makefile @ 215:517dd86b45b1

gsm-fw/services/ffs: fsck.c compiles
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 06 Jan 2014 07:12:02 +0000
parents bdfdea886bea
children 0eb85790c0ed
line wrap: on
line source

CC=	arm-elf-gcc
CFLAGS=	-O2 -fno-builtin -mthumb-interwork -mthumb
LD=	arm-elf-ld

OBJS=	cfgffs.o core.o drv.o ffs_env.o ffstrace.o fsck.o task.o

HDRS=	core.h drv.h ffs.h ffs_api.h ffs_env.h ffs_pool_size.h ffstrace.h \
	intctl.h ramffs.h task.h tmffs.h

all:	xipcode.o

${OBJS}:	${HDRS}

xipcode.o:	${OBJS}
	${LD} -r -o $@ ${OBJS}

clean:
	rm -f *.[oa] *errs