FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/sprintf/Makefile @ 143:afceeeb2cba1
Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 12 Nov 2013 05:35:48 +0000 |
parents | nuc-fw/sprintf/Makefile@dd13211c9f10 |
children | 7e45ada9c365 |
comparison
equal
deleted
inserted
replaced
142:15d5977390c2 | 143:afceeeb2cba1 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | |
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 |