⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 IBM的解析xml的工具Xerces的源代码
💻
字号:
## Copyright 2003,2004 The Apache Software Foundation.# # Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at# #      http://www.apache.org/licenses/LICENSE-2.0# # Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.##### REVISIT:  this should really be generalized to support platforms# other than Windows/MSVC++ and Linux/gcc.  However, the portability of # wide character I/O is very non-portable; so this is a nontrivial # prospect.  That's why this Makefile is provided only for gcc# at the moment.XLAT_CPP_OBJECTS = \    Xlat.o \    Xlat_CppSrc.o \    Xlat_ICUResourceBundle.o \    Xlat_MsgCatalog.o \    Xlat_Win32RC.oPLATFORM = LINUXCOMPILER = g++GCC = yesGXX = yesCXXFLAGS =   -w -O  -D_GNU_SOURCECFLAGS =   -w -O  -D_GNU_SOURCELDFLAGS =    EXTRA_LIBS =  LIBRARY_SEARCH_PATHS=-L../../../lib/LIBRARY_NAMES=-lxerces-cINCLUDES=-I../../../includeCMP= -c ${CXXFLAGS}CC= ${COMPILER} -c -D_REENTRANT -fpicLINK = ${COMPILER} -fpic ${LDFLAGS}EXTRA_LINK_OPTIONS=-lc ${EXTRA_LIBS}APP_NAME=NLSXlatall:: ${APP_NAME}${APP_NAME}:: ${XLAT_CPP_OBJECTS}	${LINK} ${XLAT_CPP_OBJECTS} -o ${APP_NAME} ${LIBRARY_SEARCH_PATHS} ${LIBRARY_NAMES} ${EXTRA_LINK_OPTIONS}Xlat.o:: Xlat.cpp Xlat_ErrHandler.hpp Xlat_Formatter.hpp Xlat_Types.hpp	${CC} ${INCLUDES} ${CMP} -o Xlat.o Xlat.cpp Xlat_CppSrc.o:: Xlat_CppSrc.cpp Xlat_CppSrc.hpp 	${CC} ${INCLUDES} ${CMP} -o Xlat_CppSrc.o Xlat_CppSrc.cpp Xlat_ICUResourceBundle.o:: Xlat_ICUResourceBundle.cpp Xlat_ICUResourceBundle.hpp 	${CC} ${INCLUDES} ${CMP} -o Xlat_ICUResourceBundle.o Xlat_ICUResourceBundle.cppXlat_MsgCatalog.o:: Xlat_MsgCatalog.cpp Xlat_MsgCatalog.hpp 	${CC} ${INCLUDES} ${CMP} -o Xlat_MsgCatalog.o Xlat_MsgCatalog.cppXlat_Win32RC.o:: Xlat_Win32RC.cpp Xlat_Win32RC.hpp	${CC} ${INCLUDES} ${CMP} -o Xlat_Win32RC.o Xlat_Win32RC.cppclean::	rm -f ${XLAT_CPP_OBJECTS} ${APP_NAME}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -