makefile

来自「ICE3.3.0--聊天程序服务器端demo」· 代码 · 共 40 行

TXT
40
字号
# **********************************************************************## Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.## This copy of Chat Demo is licensed to you under the terms# described in the CHAT_DEMO_LICENSE file included in this# distribution.## **********************************************************************top_srcdir	= ../../..include $(top_srcdir)/config/Make.rulesall::	echo ""install::	$(call installdata,ChatDemoWeb/index.html,$(install_slcallbackdir))	$(call installdata,ChatDemoWeb/index.html.js,$(install_slcallbackdir))	$(call installdata,ChatDemoWeb/chatview.html,$(install_slcallbackdir))	$(call installdata,ChatDemoWeb/Web.config,$(install_slcallbackdir))	@for subdir in js resources ; \	do \	    echo "Copying sl/ChatDemoWeb/$$subdir to $(install_slcallbackdir)..." ; \	    cp -fpr ChatDemoWeb/$$subdir $(install_slcallbackdir) ; \	done	@echo "Creating $(install_slcallbackdir)/ClientBin..." ; \	mkdir -p $(install_slcallbackdir)/ClientBin ; \	chmod a+rx $(install_slcallbackdir)/ClientBin	@echo	@echo "========================================================================="	@echo "NOTE: You now need to copy ChatDemo.xap to the following directory"	@echo	@echo "         $(install_slcallbackdir)/ClientBin"	@echo	@echo "The ChatDemo.xap file must be built on Windows with Visual Studio 2008. "	@echo "Please refer to the INSTALL.WINDOWS file for more information. "	@echo "========================================================================="

⌨️ 快捷键说明

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