FreeCalypso > hg > freecalypso-sw
comparison target-utils/libprintf/Makefile @ 11:40f607bb0a2c
target-utils refactored
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Wed, 01 May 2013 07:39:35 +0000 |
parents | loadagent/libprintf/Makefile@45bf8af5f061 |
children |
comparison
equal
deleted
inserted
replaced
10:e2e80a09338e | 11:40f607bb0a2c |
---|---|
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 |