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

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.7 1999/09/23 14:38:28 wuftpd Exp $
  20. #
  21. prefix=@prefix@
  22. exec_prefix=@exec_prefix@
  23. srcdir=@srcdir@
  24. mandir=@mandir@
  25. INSTALL=@INSTALL@
  26. CC=@CC@
  27.  
  28. #WNOERROR=-Werror
  29. #WARNINGS=$(WNOERROR) -Wall -Wpointer-arith -Wcast-align -Wstrict-prototypes -Wmissing-prototypes 
  30. CFLAGS=$(WARNINGS) @CFLAGS@
  31. LIBS=@LIBS@
  32. all: privatepw
  33. privatepw:   privatepw.c ../../src/COPYRIGHT.c vers.c
  34. $(CC) $(CFLAGS) -L../../support $(LIBS) -o $@ privatepw.c ../../src/COPYRIGHT.c vers.c 
  35. install: $(BINDIR)/privatepw $(MANDIR)/privatepw.8
  36. $(BINDIR)/privatepw: privatepw
  37. $(INSTALL) -o bin -g bin -m 755 ../../bin/privatepw $(sbindir)/privatepw
  38. $(mandir)/privatepw.8:
  39. $(INSTALL) -o bin -g bin -m 644 privatepw.8 $(mandir)/man8/privatepw.8
  40. vers.c: 
  41. (sh ../../src/newvers.sh)
  42. clean:
  43. rm -f core *.o *.lint .depend edit
  44. rm -f privatepw 
  45. distclean: clean
  46. rm -f Makefile
  47. rm -f vers.c