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

词法分析

开发平台:

Visual C++

  1. # The Apache Software License, Version 1.1
  2. #
  3. # Copyright (c) 2003 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. #
  57. # REVISIT:  this should really be generalized to support platforms
  58. # other than Windows/MSVC++ and Linux/gcc.  However, the portability of 
  59. # wide character I/O is very non-portable; so this is a nontrivial 
  60. # prospect.  That's why this Makefile is provided only for gcc
  61. # at the moment.
  62. XLAT_CPP_OBJECTS = 
  63.     Xlat.o 
  64.     Xlat_CppSrc.o 
  65.     Xlat_ICUResourceBundle.o 
  66.     Xlat_MsgCatalog.o 
  67.     Xlat_Win32RC.o
  68. PLATFORM = LINUX
  69. COMPILER = g++
  70. GCC = yes
  71. GXX = yes
  72. CXXFLAGS =   -w -O  -D_GNU_SOURCE
  73. CFLAGS =   -w -O  -D_GNU_SOURCE
  74. LDFLAGS =    
  75. EXTRA_LIBS =  
  76. LIBRARY_SEARCH_PATHS=-L../../../lib/
  77. LIBRARY_NAMES=-lxerces-c
  78. INCLUDES=-I../../../include
  79. CMP= -c ${CXXFLAGS}
  80. CC= ${COMPILER} -c -D_REENTRANT -fpic
  81. LINK = ${COMPILER} -fpic ${LDFLAGS}
  82. EXTRA_LINK_OPTIONS=-lc ${EXTRA_LIBS}
  83. APP_NAME=NLSXlat
  84. all:: ${APP_NAME}
  85. ${APP_NAME}:: ${XLAT_CPP_OBJECTS}
  86. ${LINK} ${XLAT_CPP_OBJECTS} -o ${APP_NAME} ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS}
  87. Xlat.o:: Xlat.cpp Xlat_ErrHandler.hpp Xlat_Formatter.hpp Xlat_Types.hpp
  88. ${CC} ${INCLUDES} ${CMP} -o Xlat.o Xlat.cpp 
  89. Xlat_CppSrc.o:: Xlat_CppSrc.cpp Xlat_CppSrc.hpp 
  90. ${CC} ${INCLUDES} ${CMP} -o Xlat_CppSrc.o Xlat_CppSrc.cpp 
  91. Xlat_ICUResourceBundle.o:: Xlat_ICUResourceBundle.cpp Xlat_ICUResourceBundle.hpp 
  92. ${CC} ${INCLUDES} ${CMP} -o Xlat_ICUResourceBundle.o Xlat_ICUResourceBundle.cpp
  93. Xlat_MsgCatalog.o:: Xlat_MsgCatalog.cpp Xlat_MsgCatalog.hpp 
  94. ${CC} ${INCLUDES} ${CMP} -o Xlat_MsgCatalog.o Xlat_MsgCatalog.cpp
  95. Xlat_Win32RC.o:: Xlat_Win32RC.cpp Xlat_Win32RC.hpp
  96. ${CC} ${INCLUDES} ${CMP} -o Xlat_Win32RC.o Xlat_Win32RC.cpp
  97. clean::
  98. rm -f ${XLAT_CPP_OBJECTS} ${APP_NAME}