summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-09-06 21:11:52 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-09-06 21:11:52 +0000
commit770ef0236876d2bff1db237fa1468de1e97dcc85 (patch)
treefc4e8b56caf08ae76e420e6d32ed2556cced607e /TAO
parent854a66dfd2ef5f221ee9cd2029a2e0bbe02d20e3 (diff)
downloadATCD-770ef0236876d2bff1db237fa1468de1e97dcc85.tar.gz
Added -lTAO_PortableServer to the library link list.
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/examples/Security/Send_File/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/TAO/orbsvcs/examples/Security/Send_File/Makefile b/TAO/orbsvcs/examples/Security/Send_File/Makefile
index 06f4a490a16..0b32f3ba8df 100644
--- a/TAO/orbsvcs/examples/Security/Send_File/Makefile
+++ b/TAO/orbsvcs/examples/Security/Send_File/Makefile
@@ -12,8 +12,6 @@ ifndef TAO_ROOT
TAO_ROOT = $(ACE_ROOT)/TAO
endif # ! TAO_ROOT
-LDLIBS = -lTAO
-
IDL_FILES += \
test
@@ -42,6 +40,9 @@ include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
include $(TAO_ROOT)/taoconfig.mk
+CLNT_LIBS += -lTAO_PortableServer $(TAO_CLNT_LIBS)
+SRVR_LIBS += -lTAO_PortableServer $(TAO_SRVR_LIBS)
+
#----------------------------------------------------------------------------
# Local targets
#----------------------------------------------------------------------------
@@ -54,10 +55,10 @@ realclean: clean
-$(RM) $(foreach file, $(IDL_FILES), $(foreach ext, $(IDL_EXT), $(file)$(ext)))
server: $(addprefix $(VDIR),$(SERVER_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_SRVR_LIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(SRVR_LIBS) $(POSTLINK)
client: $(addprefix $(VDIR),$(CLIENT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_CLNT_LIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(CLNT_LIBS) $(POSTLINK)
# DO NOT DELETE THIS LINE -- g++dep uses it.