home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-03-20 | 566 b | 19 lines | [TEXT/CPED] |
- CC=../../bin/gcc
- CFLAGS=-c -O -I../../include
- SRCS= bcmp.o bcopy.o bzero.o ffs.o index.o memccpy.o memchr.o \
- memcmp.o memset.o rindex.o strcasecmp.o strcat.o \
- strcmp.o strcoll.o strcpy.o strcspn.o strftime.o \
- strlen.o strmode.o strdup.o strpbrk.o strsep.o strspn.o \
- strstr.o strtok.o strxfrm.o swab.o strncat.o strncmp.o strncpy.o \
- strchr.o strrchr.o
-
- all: $(SRCS)
- /usr/bin/ar r ../libc.a $(SRCS)
-
- strchr.o : index.c
- $(CC) $(CFLAGS) -Dindex=strchr -o strchr.o index.c
-
- strrchr.o : rindex.c
- $(CC) $(CFLAGS) -Drindex=strrchr -o strrchr.o rindex.c
-
-