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

代理服务器

开发平台:

Unix_Linux

  1. #
  2. # Copyright (c) 1991 The Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted provided
  6. # that: (1) source distributions retain this entire copyright notice and
  7. # comment, and (2) distributions including binaries display the following
  8. # acknowledgement:  ``This product includes software developed by the
  9. # University of California, Berkeley and its contributors'' in the
  10. # documentation or other materials provided with the distribution and in
  11. # all advertising materials mentioning features or use of this software.
  12. # Neither the name of the University nor the names of its contributors may
  13. # be used to endorse or promote products derived from this software without
  14. # specific prior written permission.
  15. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  16. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  17. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18. #
  19. # @(#)Makefile.generic 5.5 (Berkeley) 3/1/91
  20. #
  21. srcdir          = @srcdir@
  22. VPATH           = @srcdir@
  23. CC              = @CC@ 
  24. SOCKS_FLAGS = -DSOCKS
  25. CDEBUG_FLAGS    = @CDEBUG_FLAGS@
  26. CFLAGS = -I${srcdir} -I../../../include -I${srcdir}/../../../include @CFLAGS@ @TELNET_DEFS@ $(CDEBUG_FLAGS) ${SOCKSFLAGS} 
  27. RANLIB = @RANLIB@
  28. BINRM = @BINRM@
  29. AR = ar 
  30. ARFLAGS = cruv
  31. LIB = libtelnet.a
  32. .SUFFIXES: .c .o
  33. .c.o:
  34. $(CC) ${CFLAGS} -c $(srcdir)/$*.c
  35. SRCS =  auth.c encrypt.c misc.c forward.c kerberos.c kerberos5.c spx.c enc_des.c     
  36. rsaencpwd.c krb4encpwd.c read_password.c mem.c herror.c genget.c getopt.c
  37. OBJS =  auth.o encrypt.o misc.o forward.o kerberos.o kerberos5.o spx.o enc_des.o     
  38. rsaencpwd.o krb4encpwd.o read_password.o mem.o herror.o genget.o getopt.o
  39. TELNET_H = $(srcdir)/../arpa/telnet.h
  40. all: Makefile ${LIB}
  41. Makefile: $(srcdir)/Makefile.in ../../../config.status
  42. (cd ../../..; CONFIG_FILES=clients/telnet/libtelnet/Makefile CONFIG_HEADERS= ./config.status)
  43. ${LIB}: ${OBJS}
  44. $(BINRM) ${LIB}
  45. ${AR} ${ARFLAGS} ${LIB} ${OBJS}
  46. ${RANLIB} ${LIB}
  47. clean:
  48. $(BINRM) *.o ${LIB}
  49. distclean: clean
  50. $(BINRM) Makefile
  51. auth.o: ${TELNET_H}
  52. auth.o: encrypt.h
  53. auth.o: auth.h
  54. auth.o: auth.c
  55. auth.o: misc-proto.h
  56. encrypt.o: ${TELNET_H}
  57. encrypt.o: encrypt.h
  58. encrypt.o: encrypt.c
  59. encrypt.o: misc.h
  60. kerberos.o: ${TELNET_H}
  61. kerberos.o: encrypt.h
  62. kerberos.o: auth.h
  63. kerberos.o: kerberos.c
  64. kerberos.o: misc.h
  65. kerberos5.o: ${TELNET_H}
  66. kerberos5.o: encrypt.h
  67. kerberos5.o: auth.h
  68. kerberos5.o: kerberos5.c
  69. kerberos5.o: misc.h
  70. misc.o: misc.h
  71. misc.o: misc.c
  72. enc_des.o: ${TELNET_H}
  73. enc_des.o: encrypt.h
  74. enc_des.o: enc_des.c
  75. enc_des.o: key-proto.h
  76. enc_des.o: misc-proto.h
  77. forward.o: forward.c
  78. spx.o: spx.c
  79. rsaencpwd.o: rsaencpwd.c
  80. krb4encpwd.o: krb4encpwd.c
  81. read_password.o: read_password.c
  82. mem.o: mem.c
  83. herror.o: herror.c
  84. genget.o: genget.c
  85. getopt.o: getopt.c