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.bsd < prev    next >
Encoding:
Makefile  |  1995-06-18  |  856 b   |  49 lines

  1. CC     = cc
  2. AR     = ar cq
  3. RANLIB = ranlib
  4. LIBC   = /usr/lib/libc.a
  5. IFLAGS = 
  6. LFLAGS = 
  7. CFLAGS = -O -DDEBUG ${IFLAGS} ${LFLAGS}
  8.  
  9. SRCS   = strcasestr.c authuser.c ftw.c
  10. OBJS   = strcasestr.o authuser.o ftw.o
  11.  
  12. all: $(OBJS)
  13.     -rm -f libsupport.a
  14.     ${AR} libsupport.a $(OBJS)
  15.     ${RANLIB} libsupport.a
  16.  
  17. clean:
  18.     -rm -f *.o libsupport.a
  19.  
  20. ftp.h:
  21.     install -c -m 444 ftp.h /usr/include/arpa
  22.  
  23. paths.h:
  24.     install -c -m 444 paths.h /usr/include
  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.