makefile

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

TXT
92
字号
#----------------------------------------------------------------------------
#
# Makefile,v 1.54 2003/12/10 09:40:11 jwillemsen Exp
#
#----------------------------------------------------------------------------

ifndef TAO_ROOT
  TAO_ROOT = $(ACE_ROOT)/TAO
endif

include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(TAO_ROOT)/rules.tao.GNU

#----------------------------------------------------------------------------
#       Local macros
#----------------------------------------------------------------------------


DIRS = \
  Simple_Naming \
  Redundant_Naming

ifeq ($(corba_messaging),1)
DIRS += \
  EC_Throughput \
  EC_Mcast \
  EC_MT_Mcast \
  EC_Custom_Marshal

  ifdef TAO_ORBSVCS
    ifneq (,$(findstring RTOLDEvent,$(TAO_ORBSVCS)))
      DIRS +=   EC_Multiple
    endif
  else
      DIRS +=   EC_Multiple
  endif
endif # corba_messaging

DIRS += \
  Property \
  Sched \
  Sched_Conf \
  Time

ifeq ($(corba_messaging),1)
DIRS += \
  Event \
  CosEvent
endif # corba_messaging

DIRS += Concurrency \
  FaultTolerance \
  ImplRepo \
  Trading \
  AVStreams \
  Notify \
  Interoperable_Naming \
  ior_corbaname \
  tests_svc_loader \
  Security \
  Miop \
  LoadBalancing \
  Log \
  Bug_1334_Regression \
  Bug_1395_Regression \
  Bug_1630_Regression \


ifeq ($(rt_corba),1)
  ifeq ($(interceptors),1)
     DIRS += RTCosScheduling
  endif #interceptors
endif #rt_corba

#----------------------------------------------------------------------------
#       Include macros and targets
#----------------------------------------------------------------------------

include $(ACE_ROOT)/include/makeinclude/macros.GNU

ifeq ($(minimum_corba),0)
    ifneq (Compilers 4.2,$(findstring Compilers 4.2,$(CC_VERSION)))
      ifeq ($(LYNXTARGET),)
        DIRS += InterfaceRepo
      endif # LYNXTARGET
    endif # findstring Compilers 4.2
endif # minimum_corba

include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nolocal.GNU

⌨️ 快捷键说明

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