summaryrefslogtreecommitdiff
path: root/netsvcs/clients
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-10 03:56:25 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-10 03:56:25 +0000
commit5d73204c8424b0e8a772299ab32b5c7424ccd0ca (patch)
tree058e57a252b95c69172c1f72bb361a3c24ede693 /netsvcs/clients
parentca1ef9ffbb131990be9b47fcd5022aeff20f5371 (diff)
downloadATCD-5d73204c8424b0e8a772299ab32b5c7424ccd0ca.tar.gz
updated ACE_COMPONENTS check to allow everything to be built
in the default case, when ACE_COMPONENTS isn't set.
Diffstat (limited to 'netsvcs/clients')
-rw-r--r--netsvcs/clients/Makefile17
1 files changed, 12 insertions, 5 deletions
diff --git a/netsvcs/clients/Makefile b/netsvcs/clients/Makefile
index 6204dcc34fd..1426fdb2a70 100644
--- a/netsvcs/clients/Makefile
+++ b/netsvcs/clients/Makefile
@@ -8,17 +8,24 @@
# Local macros
#----------------------------------------------------------------------------
-ifeq (Other,$(findstring Other,$(ACE_COMPONENTS)))
- DIRS = Logger \
- Naming \
- Tokens
-endif # Other
+DIRS = Logger \
+ Naming \
+ Tokens
#----------------------------------------------------------------------------
# Include macros and targets
#----------------------------------------------------------------------------
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+
+#### If ACE_COMPONENTS was set and doesn't contain Other, don't
+#### try to build any of the clients.
+ifdef ACE_COMPONENTS
+ ifeq (,$(findstring Other,$(ACE_COMPONENTS)))
+ DIRS =
+ endif # ! Other
+endif # ACE_COMPONENTS
+
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU