From 5d73204c8424b0e8a772299ab32b5c7424ccd0ca Mon Sep 17 00:00:00 2001 From: levine Date: Wed, 10 Mar 1999 03:56:25 +0000 Subject: updated ACE_COMPONENTS check to allow everything to be built in the default case, when ACE_COMPONENTS isn't set. --- netsvcs/clients/Makefile | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'netsvcs/clients') 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 -- cgit v1.2.1