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.sol < prev    next >
Encoding:
Makefile  |  1995-06-18  |  1.2 KB  |  31 lines

  1. BINDIR=        /usr/sbin
  2. ETCDIR=        /etc
  3. MANDIR=        /usr/share/man
  4. MANEXT=        1m
  5. INSTALL=    /usr/ucb/install
  6.  
  7. all:
  8.     @ echo 'Use the "build" command (shell script) to make ftpd.'
  9.     @ echo 'You can say "build help" for details on how it works.'
  10.  
  11. install: bin/ftpd bin/ftpcount bin/ftpshut
  12.     -mv -f ${BINDIR}/in.ftpd ${BINDIR}/in.ftpd-old
  13.     @echo installing binaries.
  14.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpd ${BINDIR}/in.ftpd
  15.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpshut ${BINDIR}/ftpshut
  16.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpcount ${BINDIR}/ftpcount
  17.     ${INSTALL} -c -o bin -g bin -m 755 bin/ftpwho ${BINDIR}/ftpwho
  18.     @echo installing manpages.
  19.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftpd.8 ${MANDIR}/man1m/in.ftpd.1m
  20.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftpcount.1 ${MANDIR}/man1/ftpcount.1
  21.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftpwho.1 ${MANDIR}/man1/ftpwho.1
  22.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftpshut.8 ${MANDIR}/man1m/ftpshut.1m
  23.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftpaccess.5 ${MANDIR}/man5/ftpaccess.5
  24.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftphosts.5 ${MANDIR}/man5/ftphosts.5
  25.     ${INSTALL} -c -o bin -g bin -m 755 doc/ftpconversions.5 ${MANDIR}/man5/ftpconversions.5
  26.     ${INSTALL} -c -o bin -g bin -m 755 doc/xferlog.5 ${MANDIR}/man5/xferlog.5
  27.  
  28.  
  29.  
  30.  
  31.