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

传真(Fax)编程

开发平台:

C/C++

  1. #! smake
  2. # $Id: Makefile.in,v 1.4 2008/01/31 02:26:35 faxguy Exp $
  3. #
  4. # @WARNING@
  5. #
  6. # HylaFAX Facsimile Software
  7. #
  8. # Copyright (c) 1990-1996 Sam Leffler
  9. # Copyright (c) 1991-1996 Silicon Graphics, Inc.
  10. # HylaFAX is a trademark of Silicon Graphics
  11. # Permission to use, copy, modify, distribute, and sell this software and 
  12. # its documentation for any purpose is hereby granted without fee, provided
  13. # that (i) the above copyright notices and this permission notice appear in
  14. # all copies of the software and related documentation, and (ii) the names of
  15. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  16. # publicity relating to the software without the specific, prior written
  17. # permission of Sam Leffler and Silicon Graphics.
  18. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  19. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  20. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  21. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  22. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  23. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  25. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  26. # OF THIS SOFTWARE.
  27. #
  28. #
  29. # VERSION: @VERSION@
  30. # DATE: @DATE@
  31. # TARGET: @TARGET@
  32. # CCOMPILER: @CCOMPILER@
  33. # CXXCOMPILER: @CXXCOMPILER@
  34. #
  35. DEPTH=..
  36. @MAKEINCLUDE@ @MAKELQUOTE@${DEPTH}/defs@MAKERQUOTE@
  37. SRCDIR = ${DEPTH}/${TOPSRCDIR}/hfaxd
  38. VPATH = ../@SRCDIR@/hfaxd
  39. FAXDSRCDIR= ${DEPTH}/${TOPSRCDIR}/faxd
  40. C++FILES=Admin.c++ 
  41. FIFO.c++ 
  42. FileCache.c++ 
  43. FileSystem.c++ 
  44. FileTransfer.c++ 
  45. HylaFAXServer.c++ 
  46. Jobs.c++ 
  47. Login.c++ 
  48. Parser.c++ 
  49. RecvQueue.c++ 
  50. Status.c++ 
  51. Trigger.c++ 
  52. User.c++ 
  53. SuperServer.c++ 
  54. InetFaxServer.c++ 
  55. SNPPServer.c++ 
  56. UnixFaxServer.c++ 
  57. main.c++
  58. LC++DEFS=-DSNPP_SUPPORT=1
  59. LC++INCS= -I${FAXDSRCDIR} ${ZLIBINC}
  60. TARGETS = hfaxd
  61. default all::
  62. @${MAKE} incdepend
  63. @${MAKE} targets
  64. targets: $(TARGETS)
  65. @MAKEINCLUDE@ @MAKELQUOTE@${COMMONRULES}@MAKERQUOTE@
  66. hfaxd: ${OBJECTS} FaxRequest.o FaxItem.o ${LIBS}
  67. ${C++F} -o $@ ${OBJECTS} FaxRequest.o FaxItem.o ${LDFLAGS}
  68. #
  69. # Private versions are built so that we do not need
  70. # to link against the libfaxserver archive; this
  71. # avoids lots of problems on systems that do not have
  72. # support for DSOs (there would be many undefined
  73. # symbols that could only be resolved by bloating
  74. # the contents of the archive).
  75. #
  76. FaxRequest.o: ${FAXDSRCDIR}/FaxRequest.c++
  77. ${C++F} -c ${C++FILE} -I${DEPTH}/faxd ${FAXDSRCDIR}/FaxRequest.c++@MAKECXXOVERRIDE@
  78. FaxItem.o: ${FAXDSRCDIR}/FaxItem.c++
  79. ${C++F} -c ${C++FILE} ${FAXDSRCDIR}/FaxItem.c++@MAKECXXOVERRIDE@
  80. HylaFAXServer.o: 
  81. incdepend:
  82. install: default
  83. ${INSTALL} -root ${INSTALLROOT} -F ${LIBEXEC} -u root -m 755 
  84.     -idb ${PRODUCT}.sw.server -O hfaxd
  85. ${INSTALL} -root ${INSTALLROOT} -F ${LIBDATA} -m 644 -idb ${PRODUCT}.sw.server 
  86.     -idb "config(noupdate)" -src ${SRCDIR}/hfaxd.conf -O hfaxd.conf
  87. uninstall::
  88. ${RM} -f ${LIBEXEC}/hfaxd
  89. ${RM} -f ${LIBDATA}/hfaxd.conf