view gsm-fw/sprintf/Makefile @ 927:48969469d961

gsm-fw: l1_dyn_dwl code compiles and links
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Thu, 22 Oct 2015 19:04:36 +0000
parents f8eaff87563f
children
line wrap: on
line source

CC=	arm-elf-gcc
CFLAGS=	-O2 -fno-builtin -mthumb-interwork -mthumb
AR=	arm-elf-ar
RANLIB=	arm-elf-ranlib

OBJS=	float.o integer.o sprintf.o strtok.o vspcore.o

all:	libsprintf.a

libsprintf.a:	${OBJS}
	${AR} cru $@ ${OBJS}
	${RANLIB} $@

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