FreeCalypso > hg > freecalypso-sw
comparison nuc-fw/sprintf/Makefile @ 79:947b1f473960
beginning of nuc-fw
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 11 Aug 2013 07:17:25 +0000 |
parents | |
children | dd13211c9f10 |
comparison
equal
deleted
inserted
replaced
78:2c266d4339ff | 79:947b1f473960 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork | |
3 AR= arm-elf-ar | |
4 RANLIB= arm-elf-ranlib | |
5 | |
6 OBJS= doprnt.o sprintf.o vsprintf.o | |
7 | |
8 all: libsprintf.a | |
9 | |
10 libsprintf.a: ${OBJS} | |
11 ${AR} cru $@ ${OBJS} | |
12 ${RANLIB} $@ | |
13 | |
14 clean: | |
15 rm -f *.[oa] *errs |