Makefile.bdi
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:3k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. #
  2. # Copyright (c) 1999 WU-FTPD Development Group.
  3. # All rights reserved.
  4. # Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994 
  5. #    The Regents of the University of California.  
  6. # Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.  
  7. # Portions Copyright (c) 1989 Massachusetts Institute of Technology.  
  8. # Portions Copyright (c) 1998 Sendmail, Inc.
  9. # Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P. Allman.  
  10. # Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.  
  11. # Portions Copyright (C) 1991, 1992, 1993, 1994, 1995 1996, 1997 
  12. #    Free Software Foundation, Inc.  
  13. # Portions Copyright (c) 1997 Stan Barber.  
  14. # Portions Copyright (c) 1997 Kent Landfield.
  15. # Use and distribution of this software and its source code are governed by 
  16. # the terms and conditions of the WU-FTPD Software License ("LICENSE").
  17. # If you did not receive a copy of the license, it may be obtained online at
  18. # http://www.wu-ftpd.org/license.html.
  19. # $Id: Makefile.bdi,v 1.6 1999/09/19 21:21:11 wuftpd Exp $
  20. #
  21. DESTDIR=
  22. BINDIR= ${DESTDIR}/usr/sbin
  23. BINOWN= bin
  24. BINGRP= bin
  25. SBINDIR= ${DESTDIR}/usr/libexec
  26. SBINOWN= bin
  27. SBINGRP= bin
  28. MANDIR= ${DESTDIR}/usr/share/man
  29. MANOWN= bin
  30. MANGRP= bin
  31. INSTALL= install
  32. all:
  33. @ echo 'Use the "build" command (shell script) to make ftpd.'
  34. @ echo 'You can say "build help" for details on how it works.'
  35. install: bin/ftpd bin/ftpcount bin/ftpshut bin/ftprestart bin/ftpwho bin/privatepw
  36. @echo installing binaries.
  37. @if [ ! -e ${BINDIR} ]; then 
  38. ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 -d ${BINDIR} ; 
  39. fi
  40. @if [ ! -e ${SBINDIR} ]; then 
  41. ${INSTALL} -o ${SBINOWN} -g ${SBINGRP} -m 755 -d ${SBINDIR} ; 
  42. fi
  43. ${INSTALL} -c -o ${SBINOWN} -g ${SBINGRP} -m 110 bin/ftpd           ${SBINDIR}/in.ftpd
  44. ${INSTALL} -c -o ${BINOWN}  -g ${BINGRP}  -m 111 bin/ftpshut        ${BINDIR}/ftpshut
  45. ${INSTALL} -c -o ${BINOWN}  -g ${BINGRP}  -m 111 bin/ftprestart     ${BINDIR}/ftprestart
  46. ${INSTALL} -c -o ${BINOWN}  -g ${BINGRP}  -m 111 bin/ftpcount       ${BINDIR}/ftpcount
  47. ${INSTALL} -c -o ${BINOWN}  -g ${BINGRP}  -m 111 bin/ftpwho         ${BINDIR}/ftpwho
  48.         ${INSTALL} -c -o ${BINOWN}  -g ${BINGRP}  -m 111 bin/privatepw      ${BINDIR}/privatepw
  49. @echo installing manpages.
  50. @if [ ! -e ${MANDIR}/cat1 ]; then 
  51. ${INSTALL} -o ${MANOWN} -g ${MANGRP} -m 755 -d ${MANDIR}/cat1 ; 
  52. fi
  53. nroff -man doc/ftpcount.1       > ${MANDIR}/cat1/ftpcount.0
  54. nroff -man doc/ftpwho.1         > ${MANDIR}/cat1/ftpwho.0
  55. @if [ ! -e ${MANDIR}/cat5 ]; then 
  56. ${INSTALL} -o ${MANOWN} -g ${MANGRP} -m 755 -d ${MANDIR}/cat5 ; 
  57. fi
  58. nroff -man doc/ftpaccess.5      > ${MANDIR}/cat5/ftpaccess.0
  59. nroff -man doc/ftpconversions.5 > ${MANDIR}/cat5/ftpconversions.0
  60. nroff -man doc/ftphosts.5       > ${MANDIR}/cat5/ftphosts.0
  61. nroff -man doc/xferlog.5        > ${MANDIR}/cat5/xferlog.0
  62. @if [ ! -e ${MANDIR}/cat8 ]; then 
  63. ${INSTALL} -o ${MANOWN} -g ${MANGRP} -m 755 -d ${MANDIR}/cat8 ; 
  64. fi
  65. nroff -man doc/ftpd.8           > ${MANDIR}/cat8/ftpd.0
  66. nroff -man doc/ftpshut.8        > ${MANDIR}/cat8/ftpshut.0
  67. nroff -man doc/ftprestart.8     > ${MANDIR}/cat8/ftprestart.0
  68. nroff -man util/privatepw/privatepw.8 > ${MANDIR}/cat8/privatepw.0