URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [string/] [Makefile] - Rev 1765
Compare with Previous | Blame | View Log
# 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.LIBC=../libc.aCC=or32-elf-gccAR=or32-elf-arRANLIB=or32-elf-ranlibCCFLAGS= -O2 -msoft-float -I../includeSSRC=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.oCFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)all: $(LIBC)@$(RM) $(OBJ)$(LIBC): $(LIBC)($(OBJ))$(LIBC)($(SOBJ)): $(SSRC)$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o$(AR) $(ARFLAGS) $@ $*.otransfer:-@rm -f ../include/string.hcp -p string.h ../include/.clean:rm -f *.o
