home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Networking / wu-ftpd-2.4.2b13-MIHS / makefiles / Makefile.isc < prev    next >
Encoding:
Makefile  |  1997-01-14  |  1.4 KB  |  38 lines

  1. #
  2. # Makefile for Interactive Unix
  3. # $Id: Makefile.isc,v 1.1 1995/10/15 06:37:17 sob Exp $
  4. #
  5. BINDIR=        /usr/bin
  6. ETCDIR=        /etc
  7. MANDIR=        /usr/catman/
  8. MANEXT=        8
  9. INSTALL=    util/install
  10.  
  11. all:
  12.     @ echo 'Use the "build" command (shell script) to make ftpd.'
  13.     @ echo 'You can say "build help" for details on how it works.'
  14.  
  15. install: bin/ftpd bin/ftpcount bin/ftpshut
  16.     -mv -f ${ETCDIR}/ftpd ${ETCDIR}/ftpd-old
  17.     @echo installing binaries.
  18.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpd ${ETCDIR}/ftpd
  19.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpshut ${BINDIR}/ftpshut
  20.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpcount ${BINDIR}/ftpcount
  21.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpwho ${BINDIR}/ftpwho
  22.     @echo man pages will not be installed
  23. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftpd.8 ${MANDIR}/u_man/man8/ftpd.8
  24. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftpcount.1 ${MANDIR}/u_man/man1/ftpcount.1
  25. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftpwho.1 ${MANDIR}/u_man/man1/ftpwho.1
  26. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftpshut.8 ${MANDIR}/u_man/man8/ftpshut.8
  27. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftpaccess.5 ${MANDIR}/p_man/man5/ftpaccess.4
  28. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftphosts.5 ${MANDIR}/p_man/man5/ftphosts.4
  29. #    ${INSTALL} -c -o bin -g bin -m 755 doc/ftpconversions.5 ${MANDIR}/p_man/man5/ftpconversions.4
  30. #    ${INSTALL} -c -o bin -g bin -m 755 doc/xferlog.5 ${MANDIR}/p_man/man5/xferlog.5
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.