home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / LIBSRC.ZOO / libsrc / string / Makefile.inc < prev    next >
Makefile  |  1992-01-31  |  2KB  |  80 lines

  1. #    @(#)Makefile.inc    5.6 (Berkeley) 3/5/91
  2.  
  3. # string sources
  4. .PATH: $(.CURDIR)/$(MACHINE)/string $(.CURDIR)/string
  5.  
  6. SRCS+=    memccpy.c strcasecmp.c strcoll.c strdup.c \
  7.     strftime.c strmode.c strtok.c strxfrm.c swab.c
  8.  
  9. SRCS+=    bcmp.c bcopy.c bzero.s ffs.c index.c memchr.c memcmp.c memset.c \
  10.     rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.c \
  11.     strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
  12.     strspn.c strstr.c
  13.  
  14. # if no machine specific memmove(3), build one out of bcopy(3).
  15. .if empty(SRCS:Mmemmove.s)
  16. OBJS+=    memmove.o
  17. memmove.o: bcopy.c
  18.     $(CC) -DMEMMOVE $(CFLAGS) -c $(.ALLSRC) -o $(.TARGET)
  19.     @$(LD) -x -r $(.TARGET)
  20.     @mv a.out $(.TARGET)
  21.  
  22. memmove.po: bcopy.c
  23.     $(CC) -DMEMMOVE $(CFLAGS) -c -p $(.ALLSRC) -o $(.TARGET)
  24.     @$(LD) -X -r $(.TARGET)
  25.     @mv a.out $(.TARGET)
  26. .endif
  27.  
  28. # if no machine specific memcpy(3), build one out of bcopy(3).
  29. .if empty(SRCS:Mmemcpy.s)
  30. OBJS+=    memcpy.o
  31. memcpy.o: bcopy.c
  32.     $(CC) -DMEMCOPY $(CFLAGS) -c $(.ALLSRC) -o $(.TARGET)
  33.     @$(LD) -x -r $(.TARGET)
  34.     @mv a.out $(.TARGET)
  35.  
  36. memcpy.po: bcopy.c
  37.     $(CC) -DMEMCOPY $(CFLAGS) -c -p $(.ALLSRC) -o $(.TARGET)
  38.     @$(LD) -X -r $(.TARGET)
  39.     @mv a.out $(.TARGET)
  40. .endif
  41.  
  42. # if no machine specific strchr(3), build one out of index(3).
  43. .if empty(SRCS:Mstrchr.s)
  44. OBJS+=    strchr.o
  45. strchr.o: index.c
  46.     $(CC) -DSTRCHR $(CFLAGS) -c $(.ALLSRC) -o $(.TARGET)
  47.     @$(LD) -x -r $(.TARGET)
  48.     @mv a.out $(.TARGET)
  49.  
  50. strchr.po: index.c
  51.     $(CC) -DSTRCHR $(CFLAGS) -c -p $(.ALLSRC) -o $(.TARGET)
  52.     @$(LD) -X -r $(.TARGET)
  53.     @mv a.out $(.TARGET)
  54. .endif
  55.  
  56. # if no machine specific strrchr(3), build one out of rindex(3).
  57. .if empty(SRCS:Mstrrchr.s)
  58. OBJS+=    strrchr.o
  59. strrchr.o: rindex.c
  60.     $(CC) -DSTRRCHR $(CFLAGS) -c $(.ALLSRC) -o $(.TARGET)
  61.     @$(LD) -x -r $(.TARGET)
  62.     @mv a.out $(.TARGET)
  63.  
  64. strrchr.po: rindex.c
  65.     $(CC) -DSTRRCHR $(CFLAGS) -c -p $(.ALLSRC) -o $(.TARGET)
  66.     @$(LD) -X -r $(.TARGET)
  67.     @mv a.out $(.TARGET)
  68. .endif
  69.  
  70. MAN3+=    bcmp.0 bcopy.0 bstring.0 bzero.0 ffs.0 index.0 memccpy.0 memchr.0 \
  71.     memcmp.0 memcpy.0 memmove.0 memset.0 rindex.0 strcasecmp.0 strcat.0 \
  72.     strchr.0 strcmp.0 strcoll.0 strcpy.0 strcspn.0 strftime.0 string.0 \
  73.     strlen.0 strmode.0 strdup.0 strpbrk.0 strrchr.0 strsep.0 strspn.0 \
  74.     strstr.0 strtok.0 strxfrm.0 swab.0
  75.  
  76. MLINKS+=strcasecmp.3 strncasecmp.3
  77. MLINKS+=strcat.3 strncat.3
  78. MLINKS+=strcmp.3 strncmp.3
  79. MLINKS+=strcpy.3 strncpy.3
  80.