| 12345678910111213141516171819202122232425262728293031 | # Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk># This file is part of the Linux-8086 C library and is distributed# under the GNU Library General Public License.TOPDIR=../include $(TOPDIR)Rules.makeLIBC=../libc.aSSRC=string.cSOBJ=strlen.o strcat.o strcpy.o strcmp.o strncat.o strncpy.o strncmp.o	\    strchr.o strrchr.o strdup.o memcpy.o memccpy.o memchr.o memset.o	\    memcmp.o memmove.o movedata.oOBJ=$(SOBJ) strpbrk.o strsep.o strstr.o strtok.o strcspn.o	\    strspn.o strcasecmp.o strncasecmp.o config.oall: $(LIBC)$(LIBC): $(LIBC)($(OBJ))$(LIBC)($(SOBJ)): $(SSRC)	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o	$(AR) $(ARFLAGS) $@ $*.otransfer:	-@rm -f ../include/string.h	cp -p string.h ../include/.clean:	rm -f *.o
 |