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

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.in,v 1.10 1999/09/18 09:56:37 wuftpd Exp $
  20. #
  21. prefix=@prefix@
  22. exec_prefix=@exec_prefix@
  23. srcdir=@srcdir@
  24. mandir=@mandir@
  25. INSTALL=@INSTALL@
  26. INSTALL_PROGRAM=@INSTALL_PROGRAM@
  27. INSTALL_DATA=@INSTALL_DATA@
  28. all:
  29. (cd support ; $(MAKE) all)
  30. (cd util/privatepw ; $(MAKE) all)
  31. (cd src ; $(MAKE) all)
  32. if [ ! -d bin ]; then mkdir bin; fi
  33. rm -f bin/ftpd bin/ftpshut bin/ftpcount bin/ftpwho bin/ckconfig bin/ftprestart
  34. @CPLN@ src/ftpd bin
  35. @CPLN@ src/ftpshut bin
  36. @CPLN@ src/ftpcount bin
  37. @CPLN@ src/ftpcount bin/ftpwho
  38. @CPLN@ src/ckconfig bin
  39. @CPLN@ src/ftprestart bin
  40. size bin/ftpd bin/ftpshut bin/ftpcount bin/ftpwho bin/ckconfig bin/ftprestart
  41. clean:
  42. (cd support ; $(MAKE) clean)
  43. (cd util/privatepw ; $(MAKE) clean)
  44. (cd src ; $(MAKE) clean)
  45. -rm -rf bin
  46. distclean: clean
  47. (cd support ; $(MAKE) distclean)
  48. (cd util/privatepw ; $(MAKE) distclean)
  49. (cd src ; $(MAKE) distclean)
  50. -rm -f *~
  51. -rm -f src/*~
  52. -rm -f support/*~
  53. -rm -f doc/*~
  54. -rm -f util/*~
  55. -rm -f config.log config.status config.cache Makefile config.h
  56. install: all
  57. @echo installing binaries.
  58. -@mkdir -p @sbindir@
  59. -@mkdir -p @bindir@
  60. @INSTALL_PROGRAM@ -o bin -g bin -m 755 bin/ftpd @sbindir@/in.ftpd
  61. @INSTALL_PROGRAM@ -o bin -g bin -m 755 bin/ftpshut @sbindir@/ftpshut
  62. @INSTALL_PROGRAM@ -o bin -g bin -m 755 bin/ftpcount @bindir@/ftpcount
  63. @INSTALL_PROGRAM@ -o bin -g bin -m 755 bin/ftpwho @bindir@/ftpwho
  64. @INSTALL_PROGRAM@ -o bin -g bin -m 755 bin/ckconfig @sbindir@/ckconfig
  65. @INSTALL_PROGRAM@ -o bin -g bin -m 755 bin/ftprestart @sbindir@/ftprestart
  66. @echo installing manpages.
  67. -@mkdir -p $(mandir)
  68. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpd.8 $(mandir)/man8/ftpd.8
  69. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpcount.1 $(mandir)/man1/ftpcount.1
  70. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpwho.1 $(mandir)/man1/ftpwho.1
  71. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpshut.8 $(mandir)/man8/ftpshut.8
  72. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpaccess.5 $(mandir)/man5/ftpaccess.5
  73. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftphosts.5 $(mandir)/man5/ftphosts.5
  74. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpconversions.5 $(mandir)/man5/ftpconversions.5
  75. # @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftpservers.5 $(mandir)/man5/ftpservers.5
  76. @INSTALL_DATA@ -o bin -g bin -m 644 doc/xferlog.5 $(mandir)/man5/xferlog.5
  77. @INSTALL_DATA@ -o bin -g bin -m 644 doc/ftprestart.8 $(mandir)/man8/ftprestart.8
  78. @if test ! -f @ETCDIR@/ftpaccess; then echo "Since you didn't have a ftpaccess file, the sample has been"; echo "installed to @ETCDIR@/ftpaccess."; echo "You will probably want to edit it."; @INSTALL@ -c -o bin -g bin -m 644 doc/examples/ftpaccess @ETCDIR@/ftpaccess; fi
  79. @if test ! -f @ETCDIR@/ftpconversions; then echo "Since you didn't have a ftpconversions file, the sample has been"; echo "installed to @ETCDIR@/ftpconversions."; echo "You will probably want to edit it."; @INSTALL@ -c -o bin -g bin -m 644 doc/examples/ftpconversions @ETCDIR@/ftpconversions; fi