home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Networking / wu-ftpd-2.4.2b13-MIHS / support / makefiles / Makefile.sny < prev    next >
Encoding:
Makefile  |  1997-03-03  |  1.1 KB  |  57 lines

  1. #
  2. # Makefile for Sony OS
  3. # $Id: Makefile.sny,v 1.4 1997/03/03 08:23:03 sob Exp $
  4. #
  5. CC     = cc
  6. AR     = ar cq
  7. RANLIB = ranlib
  8. LIBC   = /lib/libc.a
  9. IFLAGS = 
  10. LFLAGS = 
  11. CFLAGS = -O ${IFLAGS} ${LFLAGS}
  12.  
  13. SRCS   = getusershell.c fnmatch.c strcasestr.c strerror.c strsep.c \
  14.          authuser.c ftw.c strdup.c snprintf.c
  15. OBJS   = getusershell.o fnmatch.o strcasestr.o strerror.o strsep.o \
  16.          authuser.o ftw.o strdup.o snprintf.o
  17.  
  18. all: $(OBJS)
  19.     -rm -f libsupport.a
  20.     ${AR} libsupport.a $(OBJS)
  21.     ${RANLIB} libsupport.a
  22.  
  23. clean:
  24.     -rm -f *.o libsupport.a
  25.  
  26. ftp.h:
  27.     install -c -m 444 ftp.h /usr/include/arpa
  28.  
  29. fnmatch.o: fnmatch.c
  30.     ${CC} ${CFLAGS} -c fnmatch.c
  31.  
  32. getusershell.o: getusershell.c
  33.     ${CC} ${CFLAGS} -c getusershell.c
  34.  
  35. strerror.o: strerror.c
  36.     ${CC} ${CFLAGS} -c strerror.c
  37.  
  38. strdup.o: strdup.c
  39.     ${CC} ${CFLAGS} -c strdup.c
  40.  
  41. strcasestr.o: strcasestr.c
  42.     ${CC} ${CFLAGS} -c strcasestr.c
  43.  
  44. strsep.o: strsep.c
  45.     ${CC} ${CFLAGS} -c strsep.c
  46.  
  47. authuser.o: authuser.c
  48.     ${CC} ${CFLAGS} -c authuser.c
  49.  
  50. ftw.o: ftw.c
  51.     ${CC} ${CFLAGS} -c ftw.c
  52.  
  53. snprintf.o: snprintf.c
  54.     ${CC} ${CFLAGS} -c snprintf.c
  55.  
  56.