summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/TIE/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/TIE/Makefile')
-rw-r--r--TAO/examples/POA/TIE/Makefile28
1 files changed, 4 insertions, 24 deletions
diff --git a/TAO/examples/POA/TIE/Makefile b/TAO/examples/POA/TIE/Makefile
index f2d14fd7e7c..14e4947db34 100644
--- a/TAO/examples/POA/TIE/Makefile
+++ b/TAO/examples/POA/TIE/Makefile
@@ -23,9 +23,11 @@ FILE_SVR_OBJS = FooC.o FooS.o server.o Foo_i.o
FILE_CLT_OBJS = FooC.o FooS.o client.o
BIN = server client
+BUILD = $(BIN)
+VLDLIBS = $(LDLIBS:%=%$(VAR))
+VBIN = $(BIN:%=%$(VAR))
TAO_IDLFLAGS += -Ge 1
-
#----------------------------------------------------------------------------
# Include macros and targets
#----------------------------------------------------------------------------
@@ -34,28 +36,12 @@ include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
ifeq ($(ACE_HAS_GNUG_PRE_2_8),1)
- # Because older g++ cannot handle nested classes properly, this test
+ # Since older g++ cannot handle nested classes properly, this test
# will not build on g++ prior to 2.8.0.
all clean realclean:
@echo POA/TIE is not built with older versions of g++
else # ! ACE_HAS_GNUG_PRE_2_8
-ifeq (cxvx,$(findstring cxvx,$(CXX)))
-
- # Green Hills for VxWorks can't build this test. It runs into
- # trouble with template instantiations.
- all clean realclean:
- @echo POA/TIE is not built with Green Hills $(CXX).
-
-else # ! ACE_HAS_GNUG_PRE_2_8 && ! ghs/VxWorks
-ifeq (gcx,$(findstring gcx,$(CXX)))
-
- # Green Hills for Solaris can't build this test. It runs into
- # trouble with template instantiations.
- all clean realclean:
- @echo POA/TIE is not built with Green Hills $(CXX).
-
-else # ! ACE_HAS_GNUG_PRE_2_8 && ! ghs
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(TAO_ROOT)/rules.tao.GNU
@@ -76,14 +62,8 @@ client: $(addprefix $(VDIR),$(FILE_CLT_OBJS))
realclean: clean
-$(RM) FooC.* FooS.* FooS_T.*
-endif # ! ghs/Solaris
-endif # ! ghs/VxWorks
endif # ! ACE_HAS_GNUG_PRE_2_8
-#----------------------------------------------------------------------------
-# Dependencies
-#----------------------------------------------------------------------------
-
# DO NOT DELETE THIS LINE -- g++dep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.