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

xml/soap/webservice

开发平台:

C/C++

  1. #
  2. # The Apache Software License, Version 1.1
  3. # Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  4. # reserved.
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer. 
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in
  12. #    the documentation and/or other materials provided with the
  13. #    distribution.
  14. # 3. The end-user documentation included with the redistribution,
  15. #    if any, must include the following acknowledgment:  
  16. #       "This product includes software developed by the
  17. #        Apache Software Foundation (http://www.apache.org/)."
  18. #    Alternately, this acknowledgment may appear in the software itself,
  19. #    if and wherever such third-party acknowledgments normally appear.
  20. # 4. The names "Xerces" and "Apache Software Foundation" must
  21. #    not be used to endorse or promote products derived from this
  22. #    software without prior written permission. For written 
  23. #    permission, please contact apache@apache.org.
  24. # 5. Products derived from this software may not be called "Apache",
  25. #    nor may "Apache" appear in their name, without prior written
  26. #    permission of the Apache Software Foundation.
  27. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  28. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  29. # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  30. # DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  31. # ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  32. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  33. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  34. # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  35. # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  36. # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  37. # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  38. # SUCH DAMAGE.
  39. # ====================================================================
  40. # This software consists of voluntary contributions made by many
  41. # individuals on behalf of the Apache Software Foundation, and was
  42. # originally based on software copyright (c) 1999, International
  43. # Business Machines, Inc., http://www.ibm.com .  For more information
  44. # on the Apache Software Foundation, please see
  45. # <http://www.apache.org/>.
  46. # $Id: Makefile.in,v 1.11 2001/01/24 17:06:07 tng Exp $
  47. #
  48. ###################################################################
  49. #                    IMPORTANT NOTE                               #
  50. ###################################################################
  51. # If you are going to do the OS390BATCH build, make sure you have #
  52. # the OS390BATCH environment variable set.                        #
  53. #                                                                 #
  54. #   export OS390BATCH=1                                           #
  55. #                                                                 #
  56. ###################################################################
  57. PLATFORM = @platform@
  58. COMPILER = @compiler@
  59. CXXFLAGS = @cxxflags@
  60. CFLAGS = @cflags@
  61. LDFLAGS = @ldflags@
  62. PREFIX = @prefix@
  63. include ../../version.incl
  64. include ../Makefile.incl
  65. APP_NAME=EnumVal
  66. OUTDIR= ${XERCESCROOT}/bin/obj/${APP_NAME}
  67. EXEC= ${XERCESCROOT}/bin
  68. OBJS= ${OUTDIR}/EnumVal.o
  69. SRC= ${XERCESCROOT}/samples/${APP_NAME}
  70. HEADER_FILES=
  71. ## OS390BATCH
  72. ifeq (${OS390BATCH},1)
  73. BATCH_TARGET= "//'${LOADMOD}(${APP_NAME})'"
  74. all:: makedir ${BATCH_TARGET}
  75. else
  76. all:: makedir ${EXEC}/${APP_NAME}
  77. endif
  78. makedir::
  79. -mkdir -p $(OUTDIR)
  80. ${EXEC}/${APP_NAME}:: ${OBJS}
  81. ${LINK} ${PLATFORM_LIB_LINK_OPTIONS} ${OBJS} -o $@ ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS} 
  82. ${BATCH_TARGET}:: ${OBJS}
  83. ${LINK} ${PLATFORM_LIB_LINK_OPTIONS} ${OBJS} -o $@ ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS} 
  84. ## SOLARIS 
  85. ifeq (${PLATFORM}, SOLARIS)
  86. $(OUTDIR)/EnumVal.o:: ${SRC}/EnumVal.cpp ${HEADER_FILES}
  87. ${CC} ${CMP} -ptr${OUTDIR} $(INCLUDES) -o $(OUTDIR)/EnumVal.o ${SRC}/EnumVal.cpp
  88. else
  89. $(OUTDIR)/EnumVal.o:: ${SRC}/EnumVal.cpp ${HEADER_FILES}
  90. ${CC} ${CMP} $(INCLUDES) -o $(OUTDIR)/EnumVal.o ${SRC}/EnumVal.cpp
  91. endif
  92. clean::
  93. rm -f ${OBJS} ${EXEC}/${APP_NAME}
  94. distclean:: clean
  95. rm -f Makefile