FreeCalypso > hg > freecalypso-tools
comparison target-utils/libc/Makefile @ 95:3670e7768ab6
target-utils/libc: strlen optimized assembly implementation added
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 31 Oct 2016 22:14:38 +0000 |
parents | a675cec34076 |
children | d8d03dafb9c0 |
comparison
equal
deleted
inserted
replaced
94:cbc6bc05d494 | 95:3670e7768ab6 |
---|---|
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 memcmp.o memcpy.o memcpy16.o memcpy32.o\ | 7 OBJS= atoi.o bzero.o ctype_.o index.o memcmp.o memcpy.o memcpy16.o memcpy32.o\ |
8 memset.o rindex.o strcasecmp.o strcat.o strcmp.o strcpy.o strncat.o \ | 8 memset.o rindex.o strcasecmp.o strcat.o strcmp.o strcpy.o strlen.o \ |
9 strncmp.o strncpy.o | 9 strncat.o strncmp.o strncpy.o |
10 | 10 |
11 all: libc.a | 11 all: libc.a |
12 | 12 |
13 libc.a: ${OBJS} | 13 libc.a: ${OBJS} |
14 ${AR} cru $@ ${OBJS} | 14 ${AR} cru $@ ${OBJS} |