Makefile.in
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:5k
源码类别:

词法分析

开发平台:

Visual C++

  1. #
  2. # The Apache Software License, Version 1.1
  3. #
  4. # Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5. # reserved.
  6. #
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions
  9. # are met:
  10. #
  11. # 1. Redistributions of source code must retain the above copyright
  12. #    notice, this list of conditions and the following disclaimer.
  13. #
  14. # 2. Redistributions in binary form must reproduce the above copyright
  15. #    notice, this list of conditions and the following disclaimer in
  16. #    the documentation and/or other materials provided with the
  17. #    distribution.
  18. #
  19. # 3. The end-user documentation included with the redistribution,
  20. #    if any, must include the following acknowledgment:
  21. #       "This product includes software developed by the
  22. #        Apache Software Foundation (http://www.apache.org/)."
  23. #    Alternately, this acknowledgment may appear in the software itself,
  24. #    if and wherever such third-party acknowledgments normally appear.
  25. #
  26. # 4. The names "Xerces" and "Apache Software Foundation" must
  27. #    not be used to endorse or promote products derived from this
  28. #    software without prior written permission. For written
  29. #    permission, please contact apache@apache.org.
  30. #
  31. # 5. Products derived from this software may not be called "Apache",
  32. #    nor may "Apache" appear in their name, without prior written
  33. #    permission of the Apache Software Foundation.
  34. #
  35. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37. # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38. # DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39. # ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42. # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43. # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44. # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45. # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46. # SUCH DAMAGE.
  47. # ====================================================================
  48. #
  49. # This software consists of voluntary contributions made by many
  50. # individuals on behalf of the Apache Software Foundation, and was
  51. # originally based on software copyright (c) 1999, International
  52. # Business Machines, Inc., http://www.ibm.com .  For more information
  53. # on the Apache Software Foundation, please see
  54. # <http://www.apache.org/>.
  55. #
  56. #
  57. # $Id: Makefile.in,v 1.18 2002/07/26 16:36:31 tng Exp $
  58. #
  59. SAXPrint_DIR=SAXPrint
  60. SAX2Print_DIR=SAX2Print
  61. SAXCount_DIR=SAXCount
  62. SAX2Count_DIR=SAX2Count
  63. DOMPrint_DIR=DOMPrint
  64. DOMCount_DIR=DOMCount
  65. Redirect_DIR=Redirect
  66. MemParse_DIR=MemParse
  67. PParse_DIR=PParse
  68. StdInParse_DIR=StdInParse
  69. EnumVal_DIR=EnumVal
  70. SEnumVal_DIR=SEnumVal
  71. CreateDOMDocument_DIR=CreateDOMDocument
  72. LIB_DIR=${XERCESCROOT}/lib
  73. PLATFORM = @platform@
  74. COMPILER = @compiler@
  75. GCC = @GCC@
  76. GXX = @GXX@
  77. CXXFLAGS = @cxxflags@
  78. CFLAGS = @cflags@
  79. PREFIX = @prefix@
  80. THREADS = @threads@
  81. EXTRA_LIBS = @extra_libs@
  82. BITSTOBUILD = @bitstobuild@
  83. all:: saxprint sax2print saxcount sax2count domprint domcount redirect memparse pparse stdinparse enumval senumval createdomdocument
  84. saxprint::
  85. @echo Building "SAXPrint"
  86. $(MAKE) -C $(SAXPrint_DIR) $(MAKE_FLAGS)
  87. sax2print::
  88. @echo Building "SAX2Print"
  89. $(MAKE) -C $(SAX2Print_DIR) $(MAKE_FLAGS)
  90. saxcount::
  91. @echo Building "SAXCount"
  92. $(MAKE) -C $(SAXCount_DIR) $(MAKE_FLAGS)
  93. sax2count::
  94. @echo Building "SAX2Count"
  95. $(MAKE) -C $(SAX2Count_DIR) $(MAKE_FLAGS)
  96. domprint::
  97. @echo Building "DOMPrint"
  98. $(MAKE) -C $(DOMPrint_DIR) $(MAKE_FLAGS)
  99. domcount::
  100. @echo Building "DOMCount"
  101. $(MAKE) -C $(DOMCount_DIR) $(MAKE_FLAGS)
  102. memparse::
  103. @echo Building "MemParse"
  104. $(MAKE) -C $(MemParse_DIR) $(MAKE_FLAGS)
  105. redirect::
  106. @echo Building "Redirect"
  107. $(MAKE) -C $(Redirect_DIR) $(MAKE_FLAGS)
  108. pparse::
  109. @echo Building "PParse"
  110. $(MAKE) -C $(PParse_DIR) $(MAKE_FLAGS)
  111. stdinparse::
  112. @echo Building "StdInParse"
  113. $(MAKE) -C $(StdInParse_DIR) $(MAKE_FLAGS)
  114. enumval::
  115. @echo Building "EnumVal"
  116. $(MAKE) -C $(EnumVal_DIR) $(MAKE_FLAGS)
  117. senumval::
  118. @echo Building "SEnumVal"
  119. $(MAKE) -C $(SEnumVal_DIR) $(MAKE_FLAGS)
  120. createdomdocument::
  121. @echo Building "CreateDOMDocument"
  122. $(MAKE) -C $(CreateDOMDocument_DIR) $(MAKE_FLAGS)
  123. clean::
  124. $(MAKE) -C $(SAXPrint_DIR) $@
  125. $(MAKE) -C $(SAX2Print_DIR) $@
  126. $(MAKE) -C $(SAXCount_DIR) $@
  127. $(MAKE) -C $(SAX2Count_DIR) $@
  128. $(MAKE) -C $(DOMPrint_DIR) $@
  129. $(MAKE) -C $(DOMCount_DIR) $@
  130. $(MAKE) -C $(MemParse_DIR) $@
  131. $(MAKE) -C $(Redirect_DIR) $@
  132. $(MAKE) -C $(PParse_DIR) $@
  133. $(MAKE) -C $(StdInParse_DIR) $@
  134. $(MAKE) -C $(EnumVal_DIR) $@
  135. $(MAKE) -C $(SEnumVal_DIR) $@
  136. $(MAKE) -C $(CreateDOMDocument_DIR) $@
  137. distclean::
  138. $(MAKE) -C $(SAXPrint_DIR) $@
  139. $(MAKE) -C $(SAX2Print_DIR) $@
  140. $(MAKE) -C $(SAXCount_DIR) $@
  141. $(MAKE) -C $(SAX2Count_DIR) $@
  142. $(MAKE) -C $(DOMPrint_DIR) $@
  143. $(MAKE) -C $(DOMCount_DIR) $@
  144. $(MAKE) -C $(MemParse_DIR) $@
  145. $(MAKE) -C $(Redirect_DIR) $@
  146. $(MAKE) -C $(PParse_DIR) $@
  147. $(MAKE) -C $(StdInParse_DIR) $@
  148. $(MAKE) -C $(EnumVal_DIR) $@
  149. $(MAKE) -C $(SEnumVal_DIR) $@
  150. $(MAKE) -C $(CreateDOMDocument_DIR) $@
  151. rm -f Makefile config.cache config.log config.status
  152. rm -f *~ core