Makefile.in
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:3k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. # $Id: Makefile.in,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $
  2. #
  3. # @WARNING@
  4. #
  5. # HylaFAX Facsimile Software
  6. #
  7. # VERSION: @VERSION@
  8. # DATE: @DATE@
  9. # TARGET: @TARGET@
  10. # CCOMPILER: @CCOMPILER@
  11. # CXXCOMPILER: @CXXCOMPILER@
  12. #
  13. DEPTH=..
  14. SRCDIR = ${DEPTH}/${TOPSRCDIR}/pkg
  15. VPATH = ../@SRCDIR@/pkg
  16. #
  17. SHELL = @SCRIPT_SH@
  18. NULL =
  19. ECHO = echo
  20. all default:
  21. if [ ! -f copyright ]; then 
  22. cp $(VPATH)/../COPYRIGHT copyright ; 
  23. fi ; 
  24. for i in README depend make.links preremove proto.local ; do
  25. [ -f $$i ]  ||  cp $(VPATH)/$$i . ;
  26. done 
  27. BINARIES=
  28. ../etc/lockname
  29. ../etc/ondelay
  30. ../faxalter/faxalter
  31. ../faxcover/faxcover
  32. ../faxd/choptest
  33. ../faxd/cqtest
  34. ../faxd/faxgetty
  35. ../faxd/faxq
  36. ../faxd/faxqclean
  37. ../faxd/faxsend
  38. ../faxd/mkhash
  39. ../faxd/pagesend
  40. ../faxd/tagtest
  41. ../faxd/tsitest
  42. ../faxmail/faxmail
  43. ../faxrm/faxrm
  44. ../faxstat/faxstat
  45. ../hfaxd/hfaxd
  46. ../sendfax/sendfax
  47. ../sendpage/sendpage
  48. ../util/dialtest
  49. ../util/faxadduser
  50. ../util/faxconfig
  51. ../util/faxdeluser
  52. ../util/faxinfo
  53. ../util/faxmodem
  54. ../util/faxmsg
  55. ../util/faxstate
  56. ../util/faxwatch
  57. ../util/textfmt
  58. ../util/tiffcheck
  59. ../util/typetest
  60. ${NULL}
  61. package: cproto sproto all
  62. [ -d HylaFAX ]  &&  @RM@ -fr HylaFAX ;
  63. ${ECHO} stripping the binaries ;
  64. for i in ${BINARIES} ; do
  65. strip ${SRCDIR}/$$i ;
  66. done ;
  67. if [ "@HTML@" = yes ]; then
  68. strip ${SRCDIR}/../html/tools/man2html;
  69. strip ${SRCDIR}/../html/tools/unquote;
  70. fi;
  71. @RM@ -f pkginfo 2>/dev/null;
  72. @RM@ -f request 2>/dev/null;
  73. cp cpkginfo pkginfo ;
  74. cp crequest request ;
  75. pkgmk -d `pwd` -f cproto ;
  76. pkgtrans -s `pwd` `pwd`/HylaFAX-client-@VERSION@-@PKG_ARCH@.pkg HylaFAX ; 
  77. @RM@ -fr HylaFAX ;
  78. @RM@ -f pkginfo 2>/dev/null;
  79. @RM@ -f request 2>/dev/null;
  80. cp spkginfo pkginfo ;
  81. cp srequest request ;
  82. pkgmk -d `pwd` -f sproto ;
  83. pkgtrans -s `pwd` `pwd`/HylaFAX-@VERSION@-@PKG_ARCH@.pkg HylaFAX
  84. cproto: cproto.stub
  85. ${SHELL} ./make_proto.sh client
  86. sproto: sproto.stub
  87. ${SHELL} ./make_proto.sh server
  88. clean:
  89. @RM@ -f cproto sproto
  90. @RM@ -fr HylaFAX
  91. @RM@ -f HylaFAX-client-@VERSION@-@PKG_ARCH@.pkg
  92. @RM@ -f HylaFAX-@VERSION@-@PKG_ARCH@.pkg
  93. @RM@ -f pkginfo
  94. @RM@ -f request
  95. @RM@ -f core*
  96. clobber distclean: clean
  97. @RM@ -f copyright
  98. @RM@ -f cpkginfo
  99. @RM@ -f cproto.stub
  100. @RM@ -f crequest
  101. @RM@ -f make_proto.sh
  102. @RM@ -f postinstall
  103. @RM@ -f postremove
  104. @RM@ -f spkginfo
  105. @RM@ -f sproto.stub
  106. @RM@ -f srequest
  107. @RM@ -f Makefile