📄 makefile.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 + -