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

📄 makefile.dependencies

📁 这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料
💻 DEPENDENCIES
字号:
# -*- Makefile -*-

#----------------------------------------------------------------------------
#       Makefile.dependencies,v 1.2 2003/12/24 17:17:13 dhinton Exp
#
#       Touches the executable if any of the libraries have changed
#----------------------------------------------------------------------------

MAKEFILE = Makefile.dependencies

ifndef TAO_ROOT
  TAO_ROOT = $(ACE_ROOT)/TAO
endif # ! TAO_ROOT

#----------------------------------------------------------------------------
#       Include macros
#----------------------------------------------------------------------------

include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU

#----------------------------------------------------------------------------
#       Define local rules and targets
#---------------------------------------------------------------------------

all: tao_ifr

ifeq ($(static_libs_only),)
  override static_libs_only=0
endif

ifeq ($(static_libs_only),0)

tao_ifr: libTAO_IDL_FE_DLL.$(SOEXT) libTAO_IFR_BE_DLL.$(SOEXT)
	touch tao_ifr;

libTAO_IDL_FE_DLL.$(SOEXT):

libTAO_IFR_BE_DLL.$(SOEXT):

else # static_libs_only == 1

tao_ifr: libTAO_IDL_FE_DLL.a libTAO_IFR_BE_DLL.a
	touch tao_ifr;

libTAO_IDL_FE_DLL.a:

libTAO_IFR_BE_DLL.a:

endif # static_libs_only

clean realclean:

depend:

⌨️ 快捷键说明

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