FreeCalypso > hg > freecalypso-tools
comparison target-utils/libc/Makefile @ 89:f4619719834f
target-utils/libc: our own memcpy assembly implementation
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 28 Oct 2016 22:55:51 +0000 |
parents | 4f3843165014 |
children | 8dc062c6359b |
comparison
equal
deleted
inserted
replaced
88:4f3843165014 | 89:f4619719834f |
---|---|
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 rindex.o strcasecmp.o strcat.o strcmp.o\ | 7 OBJS= atoi.o bzero.o ctype_.o index.o memcpy.o rindex.o strcasecmp.o strcat.o\ |
8 strcpy.o strncat.o strncmp.o strncpy.o | 8 strcmp.o strcpy.o strncat.o strncmp.o strncpy.o |
9 | 9 |
10 all: libc.a | 10 all: libc.a |
11 | 11 |
12 libc.a: ${OBJS} | 12 libc.a: ${OBJS} |
13 ${AR} cru $@ ${OBJS} | 13 ${AR} cru $@ ${OBJS} |