blob: 6ed2b42414ecdd8370d4c2aa36b5f2469ef0171c (
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
|
#----------------------------------------------------------------------------
# Makefile,v 4.313 2002/07/30 16:11:06 ossama Exp
#
# Makefile for the entire ACE release
#----------------------------------------------------------------------------
MAKEFILE = Makefile.dirs
#----------------------------------------------------------------------------
# Include macros and targets
#----------------------------------------------------------------------------
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
ifeq ($(ssl),1)
DIRS += SSL
endif # ssl
ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
ifneq ($(rmcast),0)
DIRS += RMCast
endif # rmcast
endif # ACE_HAS_GNUG_PRE_2_8
## Only build the contents of the QoS directory under UNIX
## if we have the RAPI library installed
ifeq ($(rapi),1)
DIRS += QoS
endif # rapi
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
# DO NOT DELETE THIS LINE -- g++dep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
|