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

词法分析

开发平台:

Visual C++

  1. # Generated automatically from Makefile.in by configure.
  2. #
  3. # The Apache Software License, Version 1.1
  4. #
  5. # Copyright (c) 2001 The Apache Software Foundation.  All rights
  6. # reserved.
  7. #
  8. # Redistribution and use in source and binary forms, with or without
  9. # modification, are permitted provided that the following conditions
  10. # are met:
  11. #
  12. # 1. Redistributions of source code must retain the above copyright
  13. #    notice, this list of conditions and the following disclaimer.
  14. #
  15. # 2. Redistributions in binary form must reproduce the above copyright
  16. #    notice, this list of conditions and the following disclaimer in
  17. #    the documentation and/or other materials provided with the
  18. #    distribution.
  19. #
  20. # 3. The end-user documentation included with the redistribution,
  21. #    if any, must include the following acknowledgment:
  22. #       "This product includes software developed by the
  23. #        Apache Software Foundation (http://www.apache.org/)."
  24. #    Alternately, this acknowledgment may appear in the software itself,
  25. #    if and wherever such third-party acknowledgments normally appear.
  26. #
  27. # 4. The names "Xerces" and "Apache Software Foundation" must
  28. #    not be used to endorse or promote products derived from this
  29. #    software without prior written permission. For written
  30. #    permission, please contact apache@apache.org.
  31. #
  32. # 5. Products derived from this software may not be called "Apache",
  33. #    nor may "Apache" appear in their name, without prior written
  34. #    permission of the Apache Software Foundation.
  35. #
  36. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  37. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  38. # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. # DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  40. # ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  43. # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  44. # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  45. # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  46. # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  47. # SUCH DAMAGE.
  48. # ====================================================================
  49. #
  50. # This software consists of voluntary contributions made by many
  51. # individuals on behalf of the Apache Software Foundation, and was
  52. # originally based on software copyright (c) 2001, International
  53. # Business Machines, Inc., http://www.ibm.com .  For more information
  54. # on the Apache Software Foundation, please see
  55. # <http://www.apache.org/>.
  56. #
  57. #
  58. # $Log: Makefile.in,v $
  59. # Revision 1.3  2002/07/31 17:16:08  tng
  60. # [Bug 6321] gmake error in regx/Makefile.in.
  61. #
  62. # Revision 1.2  2002/07/26 16:49:29  tng
  63. # [Bug 2681] Can't build with gcc/g++ not named 'gcc'/'g++'.  Patch from Jonathan Lennox.
  64. #
  65. # Revision 1.1.1.1  2002/02/01 22:22:29  peiyongz
  66. # sane_include
  67. #
  68. # Revision 1.5  2001/07/06 17:12:09  tng
  69. # Automatic build of single-threaded library.  By Martin Kalen.
  70. #
  71. # Revision 1.4  2001/06/27 17:09:43  tng
  72. # [Bug 1147] Headers install in wrong directory.  By Murray Cumming.
  73. #
  74. # Revision 1.3  2001/05/11 13:26:42  tng
  75. # Copyright update.
  76. #
  77. # Revision 1.2  2001/05/03 18:17:24  knoaman
  78. # Some design changes:
  79. # o Changed the TokenFactory from a single static instance, to a
  80. #    normal class. Each RegularExpression object will have its own
  81. #    instance of TokenFactory, and that instance will be passed to
  82. #    other classes that need to use a TokenFactory to create Token
  83. #    objects (with the exception of RangeTokenMap).
  84. # o Added a new class RangeTokenMap to map a the different ranges
  85. #    in a given category to a specific RangeFactory object. In the old
  86. #    design RangeFactory had dual functionality (act as a Map, and as
  87. #    a factory for creating RangeToken(s)). The RangeTokenMap will
  88. #    have its own copy of the TokenFactory. There will be only one
  89. #    instance of the RangeTokenMap class, and that instance will be
  90. #    lazily deleted when XPlatformUtils::Terminate is called.
  91. #
  92. # Revision 1.1  2001/03/02 19:26:43  knoaman
  93. # Schema: Regular expression handling part II
  94. #
  95. # Revision 1.0  2001/01/26 19:50:51  knoaman
  96. #
  97. #
  98. PLATFORM = @platform@
  99. CC  = @cc@
  100. CXX = @cxx@
  101. GCC = @GCC@
  102. GXX = @GXX@
  103. CXXFLAGS = @cxxflags@
  104. CFLAGS =  @cflags@
  105. PREFIX = @prefix@
  106. PREFIX_INCLUDE = @prefix_include@
  107. LDFLAGS = @ldflags@
  108. LIBS = @libs@
  109. OSVER = @osver@
  110. USELIBWWW = @uselibwww@
  111. MESSAGELOADER = @messageloader@
  112. TRANSCODER = @transcoder@
  113. NETACCESSOR = @netaccessor@
  114. THREADS = @threads@
  115. MODULE = util
  116. SUBMODULE = regx
  117. include ../../Makefile.incl
  118. CPP_PUBHEADERS = RegxDefs.hpp 
  119. UniCharTable.hpp 
  120. Op.hpp 
  121. OpFactory.hpp 
  122. BMPattern.hpp 
  123. Match.hpp 
  124. RegxUtil.hpp 
  125. RangeToken.hpp 
  126. Token.hpp 
  127. CharToken.hpp 
  128. ClosureToken.hpp 
  129. ConcatToken.hpp 
  130. ConditionToken.hpp 
  131. ModifierToken.hpp 
  132. ParenToken.hpp 
  133. StringToken.hpp 
  134. UnionToken.hpp 
  135. TokenInc.hpp 
  136. XMLUniCharacter.hpp 
  137. RangeFactory.hpp 
  138. XMLRangeFactory.hpp 
  139. BlockRangeFactory.hpp 
  140. UnicodeRangeFactory.hpp 
  141. ASCIIRangeFactory.hpp 
  142. RangeTokenMap.hpp 
  143. TokenFactory.hpp 
  144. RegxParser.hpp 
  145. ParserForXMLSchema.hpp 
  146. RegularExpression.hpp
  147. CPP_OBJECTS = Op.$(TO) 
  148. OpFactory.$(TO) 
  149. BMPattern.$(TO) 
  150. Match.$(TO) 
  151. RegxUtil.$(TO) 
  152. RangeToken.$(TO) 
  153. Token.$(TO) 
  154. CharToken.$(TO) 
  155. ClosureToken.$(TO) 
  156. ConcatToken.$(TO) 
  157. ConditionToken.$(TO) 
  158. ModifierToken.$(TO) 
  159. ParenToken.$(TO) 
  160. StringToken.$(TO) 
  161. UnionToken.$(TO) 
  162. XMLUniCharacter.$(TO) 
  163. RangeFactory.$(TO) 
  164. XMLRangeFactory.$(TO) 
  165. BlockRangeFactory.$(TO) 
  166. UnicodeRangeFactory.$(TO) 
  167. ASCIIRangeFactory.$(TO) 
  168. RangeTokenMap.$(TO) 
  169. TokenFactory.$(TO) 
  170. RegxParser.$(TO) 
  171. ParserForXMLSchema.$(TO) 
  172. RegularExpression.$(TO)
  173. include ../Makefile.util.submodule