home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / string / Makefile < prev    next >
Encoding:
Makefile  |  1994-11-19  |  812 b   |  31 lines

  1. #
  2. # Makefile for string functions
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. INC_CFLAGS=-I. -I$(TOPDIR) \
  11.     -I$(TOPDIR)/sysdeps/$(TARGET_ARCH) \
  12.     -I$(TOPDIR)/sysdeps/generic
  13.  
  14. DIRS:=
  15. SRC1S= __memccpy.c bcmp.c bcopy.c \
  16.     memcpy.c memfrob.c memmem.c memmove.c strcasecmp.c \
  17.     strcoll.c strcpy.c strdup.c strerror.c strfry.c \
  18.     strncscmp.c strncat.c strncpy.c strsep.c strsignal.c \
  19.     strtok.c strxfrm.c swab.c # __stpncpy.c stpcpy.c strstr.c
  20. # bzero.c ffs.c memchr.c memcmp.c memset.c strcat.c strchr.c strcmp.c
  21. # strcspn.c strlen.c strncmp.c strpbrk.c strrchr.c strspn.c strstr.c.
  22. SRC2S= index.c memccpy.c rindex.c errlist.c siglist.c stpncpy.c
  23.  
  24. SRCS= $(SRC1S) $(SRC2S)
  25. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
  26. OBJS= $(SRC1S:.c=.o)
  27. ALIASES= $(SRC2S:.c=.o)
  28.  
  29. include $(TOPDIR)/Maketargets  
  30.