makefile.dependencies

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· DEPENDENCIES 代码 · 共 55 行

DEPENDENCIES
55
字号
# -*- 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 + =
减小字号Ctrl + -
显示快捷键?