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

📄 makefile

📁 ICE-3.2 一个开源的中间件
💻
字号:
# **********************************************************************## Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.## This copy of Ice is licensed to you under the terms described in the# ICE_LICENSE file included in this distribution.## **********************************************************************top_srcdir	= ../../..CLIENT		= clientTARGETS		= $(CLIENT)OBJS		= Client.o \                  ByteIntMap.o \                  IntIdentityMap.o \                  IntIdentityMapWithIndex.o \                  SortedMap.o \		  WstringWstringMap.oSRCS		= $(OBJS:.o=.cpp)include $(top_srcdir)/config/Make.rulesCPPFLAGS	:= -I. -I../../include $(CPPFLAGS)$(CLIENT): $(OBJS)	rm -f $@	$(CXX) $(LDFLAGS) -o $@ $(OBJS) $(DB_RPATH_LINK) -lFreeze $(LIBS)ByteIntMap.h ByteIntMap.cpp: $(SLICE2FREEZE)	rm -f ByteIntMap.h ByteIntMap.cpp	$(SLICE2FREEZE) --dict Test::ByteIntMap,byte,int --dict-index Test::ByteIntMap ByteIntMapIntIdentityMap.h IntIdentityMap.cpp: $(SLICE2FREEZE)	rm -f IntIdentityMap.h IntIdentityMap.cpp	$(SLICE2FREEZE) --ice $(SLICE2CPPFLAGS)  --dict Test::IntIdentityMap,int,Ice::Identity IntIdentityMap $(slicedir)/Ice/Identity.iceIntIdentityMapWithIndex.h IntIdentityMapWithIndex.cpp: $(SLICE2FREEZE)	rm -f IntIdentityMapWithIndex.h IntIdentityMapWithIndex.cpp	$(SLICE2FREEZE) --ice $(SLICE2CPPFLAGS) --dict Test::IntIdentityMapWithIndex,int,Ice::Identity --dict-index Test::IntIdentityMapWithIndex,category IntIdentityMapWithIndex $(slicedir)/Ice/Identity.iceSortedMap.h SortedMap.cpp: $(SLICE2FREEZE)	rm -f SortedMap.h SortedMap.cpp	$(SLICE2FREEZE)  --ice $(SLICE2CPPFLAGS) --dict Test::SortedMap,int,Ice::Identity,sort SortedMap --dict-index "Test::SortedMap,category,sort,std::greater<std::string>" $(slicedir)/Ice/Identity.iceWstringWstringMap.h WstringWstringMap.cpp: $(SLICE2FREEZE)	rm -f WstringWstringMap.h WstringWstringMap.cpp	$(SLICE2FREEZE) --dict 'Test::WstringWstringMap,["cpp:type:wstring"]string,["cpp:type:wstring"]string' --dict-index Test::WstringWstringMap WstringWstringMapclean::	rm -f ByteIntMap.h ByteIntMap.cpp IntIdentityMap.h IntIdentityMap.cpp IntIdentityMapWithIndex.h IntIdentityMapWithIndex.cpp SortedMap.h SortedMap.cpp WstringWstringMap.h WstringWstringMap.cppclean::	rm -f db/binary db/binary.* db/intIdentity db/intIdentity.* db/__catalog db/log.*include .depend

⌨️ 快捷键说明

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