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

📄 resources.mak

📁 IBM的解析xml的工具Xerces的源代码
💻 MAK
字号:
## Copyright (c) 2003 IBM, Inc.##  File:     resources.mak#  Location: <xercesc_root>\src\xercesc\util\MsgLoaders\ICU\resources##  Windows nmake makefile for compiling (and packaging) the resources#  for ICU message loader.##  List of resource files to be built.##    . When adding a resource source (.txt) file for a new locale,#           the corresponding .res file must be added to this list,#    . AND to the file res-file-list.txt##  keep synchronous with ICUMsgLoader.cpp## for VERinclude ..\..\..\..\..\..\version.inclRESFILES= en_US.res PKGNAME       = XercesMessagesTARGET_DLL    = $(PKGNAME)$(VER).DLLTARGET_LIB    = $(PKGNAME)$(VER).libGENRB    = $(ICUROOT)\bin\genrb.exePKGDATA  = $(ICUROOT)\bin\pkgdataREN      = ren##  File name extensions for inference rule matching.#    clear out the built-in ones (for .c and the like), and add#    the definition for .txt to .res.#.SUFFIXES :.SUFFIXES : .txt##  Inference rule, for compiling a .txt file into a .res file.#  -t fools make into thinking there are files such as es.res, etc#.txt.res:	$(GENRB) -t --package-name $(PKGNAME) -d . $*.txt##  all - nmake starts here by default#all: $(TARGET_DLL)$(TARGET_DLL): $(RESFILES)	$(PKGDATA) --name $(PKGNAME)$(VER) -v -O R:$(ICUROOT) --mode dll -d . res-file-list.txt

⌨️ 快捷键说明

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