blob: 05605cc751006ed38d7d817353c2f6540b59ba8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#----------------------------------------------------------------------------
#
# $Id$
#
#----------------------------------------------------------------------------
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
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
|