FreeCalypso > hg > freecalypso-tools
comparison target-utils/libprintf/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children | 5aff772ff84d |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -Os -fno-builtin | |
3 AR= arm-elf-ar | |
4 RANLIB= arm-elf-ranlib | |
5 | |
6 OBJS= doprnt.o printf.o putchar.o puts.o sprintf.o sprintf_putchar.o \ | |
7 vprintf.o vsprintf.o | |
8 | |
9 all: libprintf.a | |
10 | |
11 libprintf.a: ${OBJS} | |
12 ${AR} cru $@ ${OBJS} | |
13 ${RANLIB} $@ | |
14 | |
15 clean: | |
16 rm -f *.[oa] *errs |