Makefile.in
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:7k
源码类别:

xml/soap/webservice

开发平台:

C/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.20 2001/07/08 20:09:47 jberry Exp $
  58. #
  59. ###################################################################
  60. #                    IMPORTANT NOTE                               #
  61. ###################################################################
  62. # If you are going to do the OS390BATCH build, make sure you have #
  63. # the OS390BATCH environment variable set.                        #
  64. #                                                                 #
  65. #   export OS390BATCH=1                                           #
  66. #                                                                 #
  67. ###################################################################
  68. PLATFORM = @platform@
  69. CC  = @cc@
  70. CXX = @cxx@
  71. PREFIX = @prefix@
  72. LDFLAGS = @ldflags@
  73. LIBS = @libs@
  74. OSVER = @osver@
  75. TRANSCODER = @transcoder@
  76. include ../version.incl
  77. include ../src/Makefile.incl
  78. LIB=${XERCESCROOT}/lib
  79. ## OS390BATCH
  80. ifeq (${OS390BATCH},1)
  81. BATCH_TARGET = "//'${LOADMOD}(IXM4C35)'"
  82. endif
  83. ifneq (${PLATFORM}, OS400)
  84. LIBNAME=libxerces-c
  85. else
  86. LIBNAME=libxercesc
  87. endif
  88. THISLIB=${LIB}/${LIBNAME}
  89. ALL_OBJECTS=$(wildcard $(XML_OBJ_DIR)/*.o)
  90. #######################################################
  91. #  HP-UX with CC compiler is awkward since it does    #
  92. #  not instantiate templates automatically. To do so  #
  93. #  you need to invoke the linker. So, just for this   #
  94. #  compiler, we try to create a dummy executable      #
  95. #  before we create the shared library.  This will    #
  96. #  force all templates to be instantiated and the     #
  97. #  shared library is created with all template        #
  98. #  instantiations in place.                           #
  99. #######################################################
  100. ifeq (${PLATFORM},HPUX)
  101.   ifeq (${CXX},CC)
  102.     ######  Start HP-UX  CC compiler specific stuff #######
  103.     DUMMYEXE=$(XML_LIB_DIR)/dummyExe
  104.     TEMPLATESOBJS=$(wildcard $(TEMPLATESREPOSITORY)/*.o)
  105.     all: $(DUMMYEXE) ${THISLIB}${VER}${SHLIBSUFFIX}
  106. rm -f $(DUMMYEXE)
  107.     $(DUMMYEXE): $(ALL_OBJECTS)
  108. ${MAKE_SHARED} -o ${@} $^ $(PLATFORM_LIBRARIES) $(ALLLIBS)
  109.     ######  End HP-UX  CC compiler specific stuff #######
  110.   else
  111.     all: ${THISLIB}${VER}${SHLIBSUFFIX}
  112.   endif
  113. else
  114.    ## Start OS390BATCH ##
  115.   ifeq (${OS390BATCH},1)
  116. all: ${BATCH_TARGET}
  117.    ## End OS390BATCH ##
  118.   else
  119. all: ${THISLIB}${VER}${SHLIBSUFFIX}
  120.   endif
  121. endif
  122. ########################################################
  123. #                                                      #
  124. # OS/390 works pretty much the same way as Windows NT  #
  125. # as far as linking goes. The runtime library is       #
  126. # called .dll, and the link-time libraries have a .x   #
  127. # extension. You need the .x files to link             #
  128. # your application at build time and need the .dll     #
  129. # file to run it. So, we need to copy over the .x      #
  130. # file to the lib directory as well, so that you can   #
  131. # link your application.                               #
  132. ########################################################
  133. ${THISLIB}${VER}${SHLIBSUFFIX}: $(ALL_OBJECTS)
  134. @echo Building ${THISLIB}${VER}${SHLIBSUFFIX}
  135. ${MAKE_SHARED} -o ${@} $^ $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(EXTRA_LINK_OPTIONS) $(ALLLIBS)
  136. ## Start OS390 ##
  137. ifeq (${PLATFORM},OS390)
  138. ## Start OS390BATCH ##
  139. ifeq (${OS390BATCH},1)
  140. ${BATCH_TARGET}:        $(ALL_OBJECTS)
  141. @echo Building ${BATCH_TARGET}
  142. ${MAKE_SHARED} -o ${@} $^ $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(EXTRA_LINK_OPTIONS) $(ALLLIBS)
  143. else
  144. $(CP) ${LIBNAME}${VER}${OS390SIDEDECK} ${LIB}
  145. endif
  146. endif
  147. ## End OS390 and OS390BATCH
  148. clean:
  149. @echo "Making clean in obj ..."
  150. -rm -f $(ALL_OBJECTS) ${THISLIB}${VER}${SHLIBSUFFIX}
  151. ifneq ($(strip $(TEMPLATESREPOSITORY)),)
  152. -rm -f $(TEMPLATESREPOSITORY)/*.o
  153. -rm -f $(TEMPLATESREPOSITORY)/*.c
  154. -rm -f $(TEMPLATESREPOSITORY)/*.cs
  155. -rm -f $(TEMPLATESREPOSITORY)/*.he
  156. endif
  157. distclean: clean
  158. -rm -f Makefile
  159. -rm -rf $(XML_OBJ_DIR)
  160. ifneq ($(strip $(TEMPLATESREPOSITORY)),)
  161. -rm -rf $(TEMPLATESREPOSITORY)
  162. endif
  163. install:
  164. ifeq (${OS390BATCH},1)
  165. @echo "Nothing to do for OS390BATCH ..."
  166. else
  167. -mkdir -p ${PREFIX}/lib
  168. $(CP) ${THISLIB}${VER}${SHLIBSUFFIX} $(PREFIX)/lib
  169. ifeq (${PLATFORM},OS390)
  170. $(CP) ${LIBNAME}${VER}${OS390SIDEDECK} $(PREFIX)/lib
  171. endif
  172. endif