diff options
Diffstat (limited to 'TAO/tests/Forwarding/Makefile.am')
-rw-r--r-- | TAO/tests/Forwarding/Makefile.am | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/TAO/tests/Forwarding/Makefile.am b/TAO/tests/Forwarding/Makefile.am index a36b5d5761c..ad476aac397 100644 --- a/TAO/tests/Forwarding/Makefile.am +++ b/TAO/tests/Forwarding/Makefile.am @@ -46,54 +46,54 @@ test-stamp: $(srcdir)/test.idl $(TAO_IDL_DEP) noinst_HEADERS = \ test.idl -## Makefile.Forwarding_Server.am +## Makefile.Forwarding_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 = \ - server.cpp \ +client_SOURCES = \ + client.cpp \ testC.cpp \ - testS.cpp \ - test_i.cpp \ test_i.h \ test_i.inl -server_LDADD = \ - $(TAO_BUILDDIR)/tao/libTAO_IORTable.la \ - $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ +client_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \ $(TAO_BUILDDIR)/tao/libTAO.la \ $(ACE_BUILDDIR)/ace/libACE.la endif BUILD_EXCEPTIONS -## Makefile.Forwarding_Client.am +## Makefile.Forwarding_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 = \ - client.cpp \ +server_SOURCES = \ + server.cpp \ testC.cpp \ + testS.cpp \ + test_i.cpp \ test_i.h \ test_i.inl -client_LDADD = \ +server_LDADD = \ + $(TAO_BUILDDIR)/tao/libTAO_IORTable.la \ + $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ $(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \ $(TAO_BUILDDIR)/tao/libTAO.la \ $(ACE_BUILDDIR)/ace/libACE.la |