FreeCalypso > hg > freecalypso-tools
comparison target-utils/libc/Makefile @ 96:d8d03dafb9c0
target-utils/libc: strtol and strtoul added from 4.4BSD with simplification
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 31 Oct 2016 23:35:48 +0000 |
parents | 3670e7768ab6 |
children |
comparison
equal
deleted
inserted
replaced
95:3670e7768ab6 | 96:d8d03dafb9c0 |
---|---|
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 strlen.o \ | 8 memset.o rindex.o strcasecmp.o strcat.o strcmp.o strcpy.o strlen.o \ |
9 strncat.o strncmp.o strncpy.o | 9 strncat.o strncmp.o strncpy.o strtol.o strtoul.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} |