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.hiu < prev    next >
Encoding:
Makefile  |  1997-01-14  |  1.3 KB  |  36 lines

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