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.hiu < prev    next >
Encoding:
Makefile  |  1997-03-03  |  963 b   |  53 lines

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