summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Factory/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Factory/Makefile')
-rw-r--r--TAO/tests/OBV/Factory/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/TAO/tests/OBV/Factory/Makefile b/TAO/tests/OBV/Factory/Makefile
index 2ba2ae40aab..6b83f8f26fb 100644
--- a/TAO/tests/OBV/Factory/Makefile
+++ b/TAO/tests/OBV/Factory/Makefile
@@ -21,8 +21,7 @@ SRC = $(addsuffix .cpp, $(BIN) FactoryC_impl FactoryS_impl) $(IDL_SRC)
CLIENT_OBJS = client.o FactoryC.o FactoryC_impl.o
SERVER_OBJS = server.o FactoryC_impl.o FactoryS_impl.o $(IDL_SRC:.cpp=.o)
-# Allow valuetypes
-TAO_IDLFLAGS += -Gv -Ge 1
+TAO_IDLFLAGS += -Ge 1
#----------------------------------------------------------------------------
# Include macros and targets
#----------------------------------------------------------------------------
@@ -45,7 +44,7 @@ server: $(addprefix $(VDIR),$(SERVER_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_SRVR_LIBS) $(POSTLINK)
client: $(addprefix $(VDIR),$(CLIENT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_CLNT_LIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_CLNT_VT_LIBS) $(POSTLINK)
realclean: clean
-$(RM) $(foreach ext, $(IDL_EXT), Factory$(ext))