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. #
  47. # $Id: Makefile.in,v 1.3 2000/11/09 01:37:31 andyh Exp $
  48. #
  49. ###################################################################
  50. #                    IMPORTANT NOTE                               #
  51. ###################################################################
  52. # If you are going to do the OS390BATCH build, make sure you have #
  53. # the OS390BATCH environment variable set.                        #
  54. #                                                                 #
  55. #   export OS390BATCH=1                                           #
  56. #                                                                 #
  57. ###################################################################
  58. PLATFORM = @platform@
  59. COMPILER = @compiler@
  60. CXXFLAGS = @cxxflags@
  61. CFLAGS = @cflags@
  62. LDFLAGS = @ldflags@
  63. PREFIX = @prefix@
  64. include ../../version.incl
  65. include ../Makefile.incl
  66. APP_NAME=SAX2Print
  67. OUTDIR= ${XERCESCROOT}/bin/obj/${APP_NAME}
  68. EXEC= ${XERCESCROOT}/bin
  69. OBJS= ${OUTDIR}/SAX2Print.o ${OUTDIR}/SAX2PrintHandlers.o
  70. SRC= ${XERCESCROOT}/samples/${APP_NAME}
  71. HEADER_FILES=${SRC}/SAX2Print.hpp ${SRC}/SAX2PrintHandlers.hpp
  72. ## OS390BATCH
  73. ifeq (${OS390BATCH},1)
  74. BATCH_TARGET= "//'${LOADMOD}(SAX2PRNT)'"
  75. all:: makedir ${BATCH_TARGET}
  76. else
  77. all:: makedir ${EXEC}/${APP_NAME}
  78. endif
  79. makedir::
  80. -mkdir -p $(OUTDIR)
  81. ${EXEC}/${APP_NAME}:: ${OBJS}
  82. ${LINK} ${PLATFORM_LIB_LINK_OPTIONS} ${OBJS} -o $@ ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS} 
  83. ${BATCH_TARGET}:: ${OBJS}
  84. ${LINK} ${PLATFORM_LIB_LINK_OPTIONS} ${OBJS} -o $@ ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS} 
  85. $(OUTDIR)/SAX2Print.o:: ${SRC}/SAX2Print.cpp ${HEADER_FILES}
  86. ${CC} ${CMP} $(INCLUDES) -o $(OUTDIR)/SAX2Print.o ${SRC}/SAX2Print.cpp
  87. $(OUTDIR)/SAX2PrintHandlers.o:: ${SRC}/SAX2PrintHandlers.cpp ${HEADER_FILES}
  88. ${CC} ${CMP} $(INCLUDES) -o $(OUTDIR)/SAX2PrintHandlers.o ${SRC}/SAX2PrintHandlers.cpp
  89. clean::
  90. rm -f ${OBJS} ${EXEC}/${APP_NAME}
  91. distclean:: clean
  92. rm -f Makefile