summaryrefslogtreecommitdiff
path: root/TAO/examples/Logging
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-02-29 16:13:56 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-02-29 16:13:56 +0000
commit524dd8759e3cdbf021f7a6ebd9664c67eae84ce6 (patch)
tree14d9348d664cfc7b6f7c9efc79b966c34916a520 /TAO/examples/Logging
parente58a7f8e4c408ae7c7bf5f7c0f8a680329779721 (diff)
downloadATCD-524dd8759e3cdbf021f7a6ebd9664c67eae84ce6.tar.gz
ChangeLogTag:Sun Feb 29 10:34:26 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/examples/Logging')
-rw-r--r--TAO/examples/Logging/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/examples/Logging/Makefile b/TAO/examples/Logging/Makefile
index 8805b98f3bc..6db6eb7ed95 100644
--- a/TAO/examples/Logging/Makefile
+++ b/TAO/examples/Logging/Makefile
@@ -31,14 +31,6 @@ TEST_OBJS = $(COMMON_OBJS) Logging_Test.o Logging_Test_i.o
BIN2 = Logging_Service Logging_Test
-#### If the TAO orbsvcs library wasn't built with sufficient components,
-#### don't try to build here.
-TAO_ORBSVCS := $(shell sh $(ACE_ROOT)/bin/ace_components --orbsvcs)
-ifeq (Naming,$(findstring Naming,$(TAO_ORBSVCS)))
- ifeq (LifeCycle,$(findstring LifeCycle,$(TAO_ORBSVCS)))
- BIN = $(BIN2)
- endif # LifeCycle
-endif # Naming
#----------------------------------------------------------------------------
# Include macros and targets
@@ -47,6 +39,14 @@ endif # Naming
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(TAO_ROOT)/rules.tao.GNU
+#### If the TAO orbsvcs library wasn't built with sufficient components,
+#### don't try to build here.
+TAO_ORBSVCS := $(shell sh $(ACE_ROOT)/bin/ace_components --orbsvcs)
+ifeq (Naming,$(findstring Naming,$(TAO_ORBSVCS)))
+ ifeq (LifeCycle,$(findstring LifeCycle,$(TAO_ORBSVCS)))
+ BIN = $(BIN2)
+ endif # LifeCycle
+endif # Naming
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU