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

词法分析

开发平台:

Visual C++

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