FreeCalypso > hg > freecalypso-tools
comparison target-utils/libc/Makefile @ 91:659fa1a26269
target-utils/libc: non-optimized C implementation of memset
for the sake of completeness and compliance
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 28 Oct 2016 23:15:01 +0000 |
parents | 8dc062c6359b |
children | a675cec34076 |
comparison
equal
deleted
inserted
replaced
90:8dc062c6359b | 91:659fa1a26269 |
---|---|
2 CFLAGS= -Os -fno-builtin | 2 CFLAGS= -Os -fno-builtin |
3 CPPFLAGS=-I../include | 3 CPPFLAGS=-I../include |
4 AR= arm-elf-ar | 4 AR= arm-elf-ar |
5 RANLIB= arm-elf-ranlib | 5 RANLIB= arm-elf-ranlib |
6 | 6 |
7 OBJS= atoi.o bzero.o ctype_.o index.o memcpy.o memcpy16.o memcpy32.o rindex.o\ | 7 OBJS= atoi.o bzero.o ctype_.o index.o memcpy.o memcpy16.o memcpy32.o memset.o\ |
8 strcasecmp.o strcat.o strcmp.o strcpy.o strncat.o strncmp.o strncpy.o | 8 rindex.o strcasecmp.o strcat.o strcmp.o strcpy.o strncat.o strncmp.o \ |
9 strncpy.o | |
9 | 10 |
10 all: libc.a | 11 all: libc.a |
11 | 12 |
12 libc.a: ${OBJS} | 13 libc.a: ${OBJS} |
13 ${AR} cru $@ ${OBJS} | 14 ${AR} cru $@ ${OBJS} |