CFLAGS=-O -fomit-frame-pointer
CC=xgcc-68
AR=xgcc-ar

OBJS=	index.o rindex.o strcat.o strcmp.o strcpy.o \
	strlen.o strncat.o strncmp.o strncpy.o

all : ${OBJS}
	${AR} vr ../libc.a ${OBJS}

clean :
	rm -f ${OBJS}
