FreeCalypso > hg > freecalypso-sw
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/target-utils/libprintf/Makefile Wed May 01 07:39:35 2013 +0000 @@ -0,0 +1,16 @@ +CC= arm-elf-gcc +CFLAGS= -Os -fno-builtin +AR= arm-elf-ar +RANLIB= arm-elf-ranlib + +OBJS= doprnt.o printf.o putchar.o puts.o sprintf.o sprintf_putchar.o \ + vprintf.o vsprintf.o + +all: libprintf.a + +libprintf.a: ${OBJS} + ${AR} cru $@ ${OBJS} + ${RANLIB} $@ + +clean: + rm -f *.[oa] *errs