diff options
Diffstat (limited to 'TAO/tests/Big_Twoways/Makefile.am')
-rw-r--r-- | TAO/tests/Big_Twoways/Makefile.am | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/TAO/tests/Big_Twoways/Makefile.am b/TAO/tests/Big_Twoways/Makefile.am index 8892badb59a..28d3dbd6245 100644 --- a/TAO/tests/Big_Twoways/Makefile.am +++ b/TAO/tests/Big_Twoways/Makefile.am @@ -46,28 +46,30 @@ Test-stamp: $(srcdir)/Test.idl $(TAO_IDL_DEP) noinst_HEADERS = \ Test.idl -## Makefile.Big_Twoways_Server.am +## Makefile.Big_Twoways_Client.am if BUILD_EXCEPTIONS -noinst_PROGRAMS += server +noinst_PROGRAMS += client -server_CPPFLAGS = \ +client_CPPFLAGS = \ -I$(ACE_ROOT) \ -I$(ACE_BUILDDIR) \ -I$(TAO_ROOT) \ -I$(TAO_BUILDDIR) -server_SOURCES = \ - Coordinator.cpp \ - Session_Control.cpp \ +client_SOURCES = \ + Peer.cpp \ + Session.cpp \ + Session_Task.cpp \ TestC.cpp \ TestS.cpp \ - server.cpp \ - Coordinator.h \ - Session_Control.h + client.cpp \ + Peer.h \ + Session.h \ + Session_Task.h -server_LDADD = \ +client_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ $(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \ $(TAO_BUILDDIR)/tao/libTAO.la \ @@ -75,30 +77,28 @@ server_LDADD = \ endif BUILD_EXCEPTIONS -## Makefile.Big_Twoways_Client.am +## Makefile.Big_Twoways_Server.am if BUILD_EXCEPTIONS -noinst_PROGRAMS += client +noinst_PROGRAMS += server -client_CPPFLAGS = \ +server_CPPFLAGS = \ -I$(ACE_ROOT) \ -I$(ACE_BUILDDIR) \ -I$(TAO_ROOT) \ -I$(TAO_BUILDDIR) -client_SOURCES = \ - Peer.cpp \ - Session.cpp \ - Session_Task.cpp \ +server_SOURCES = \ + Coordinator.cpp \ + Session_Control.cpp \ TestC.cpp \ TestS.cpp \ - client.cpp \ - Peer.h \ - Session.h \ - Session_Task.h + server.cpp \ + Coordinator.h \ + Session_Control.h -client_LDADD = \ +server_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ $(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \ $(TAO_BUILDDIR)/tao/libTAO.la \ |