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

xml/soap/webservice

开发平台:

C/C++

  1. #
  2. # The Apache Software License, Version 1.1
  3. # Copyright (c) 2001 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) 2001, 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.3 2001/11/21 22:09:49 peiyongz Exp $
  47. # $Log: Makefile.in,v $
  48. # Revision 1.3  2001/11/21 22:09:49  peiyongz
  49. # Copy Right date
  50. #
  51. # Revision 1.2  2001/11/21 19:05:23  peiyongz
  52. # SEnumVal: GrammarType checked
  53. #
  54. #
  55. ###################################################################
  56. #                    IMPORTANT NOTE                               #
  57. ###################################################################
  58. # If you are going to do the OS390BATCH build, make sure you have #
  59. # the OS390BATCH environment variable set.                        #
  60. #                                                                 #
  61. #   export OS390BATCH=1                                           #
  62. #                                                                 #
  63. ###################################################################
  64. PLATFORM = @platform@
  65. COMPILER = @compiler@
  66. CXXFLAGS = @cxxflags@
  67. CFLAGS = @cflags@
  68. LDFLAGS = @ldflags@
  69. PREFIX = @prefix@
  70. include ../../version.incl
  71. include ../Makefile.incl
  72. APP_NAME=SEnumVal
  73. OUTDIR= ${XERCESCROOT}/bin/obj/${APP_NAME}
  74. EXEC= ${XERCESCROOT}/bin
  75. OBJS= ${OUTDIR}/SEnumVal.o
  76. SRC= ${XERCESCROOT}/samples/${APP_NAME}
  77. HEADER_FILES=
  78. ## OS390BATCH
  79. ifeq (${OS390BATCH},1)
  80. BATCH_TARGET= "//'${LOADMOD}(${APP_NAME})'"
  81. all:: makedir ${BATCH_TARGET}
  82. else
  83. all:: makedir ${EXEC}/${APP_NAME}
  84. endif
  85. makedir::
  86. -mkdir -p $(OUTDIR)
  87. ${EXEC}/${APP_NAME}:: ${OBJS}
  88. ${LINK} ${PLATFORM_LIB_LINK_OPTIONS} ${OBJS} -o $@ ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS} 
  89. ${BATCH_TARGET}:: ${OBJS}
  90. ${LINK} ${PLATFORM_LIB_LINK_OPTIONS} ${OBJS} -o $@ ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS} 
  91. ## SOLARIS 
  92. ifeq (${PLATFORM}, SOLARIS)
  93. $(OUTDIR)/SEnumVal.o:: ${SRC}/SEnumVal.cpp ${HEADER_FILES}
  94. ${CC} ${CMP} -ptr${OUTDIR} $(INCLUDES) -o $(OUTDIR)/SEnumVal.o ${SRC}/SEnumVal.cpp
  95. else
  96. $(OUTDIR)/SEnumVal.o:: ${SRC}/SEnumVal.cpp ${HEADER_FILES}
  97. ${CC} ${CMP} $(INCLUDES) -o $(OUTDIR)/SEnumVal.o ${SRC}/SEnumVal.cpp
  98. endif
  99. clean::
  100. rm -f ${OBJS} ${EXEC}/${APP_NAME}
  101. distclean:: clean
  102. rm -f Makefile