diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-09 04:28:57 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-09 04:28:57 +0000 |
commit | 1c90d28c21509cfe50dfc1f6242488cea82fac8b (patch) | |
tree | 8668fed3c735389d2ff1bc6d48418e24cd0c7fe5 /netsvcs/clients | |
parent | 1c6ea0fcdf0eb2808eed9089538e1278c34d1141 (diff) | |
download | ATCD-1c90d28c21509cfe50dfc1f6242488cea82fac8b.tar.gz |
suppress build if Other ACE_COMPONENT isn't built
Diffstat (limited to 'netsvcs/clients')
-rw-r--r-- | netsvcs/clients/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/netsvcs/clients/Makefile b/netsvcs/clients/Makefile index 43f23ea97b8..6204dcc34fd 100644 --- a/netsvcs/clients/Makefile +++ b/netsvcs/clients/Makefile @@ -1,24 +1,26 @@ #---------------------------------------------------------------------------- -# $Id: Makefile 1.1 10/18/96 +# $Id$ # -# Makefile for the client programs that test the ACE network services +# Makefile for the client programs that test the ACE network services #---------------------------------------------------------------------------- #---------------------------------------------------------------------------- -# Local macros +# Local macros #---------------------------------------------------------------------------- -DIRS = Logger \ - Naming \ - Tokens +ifeq (Other,$(findstring Other,$(ACE_COMPONENTS))) + DIRS = Logger \ + Naming \ + Tokens +endif # Other #---------------------------------------------------------------------------- -# Include macros and targets +# Include macros and targets #---------------------------------------------------------------------------- -include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU -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.nolocal.GNU +include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU +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.nolocal.GNU |