diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2008-05-03 22:31:51 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2008-05-03 22:31:51 +0000 |
commit | ad7084d385d8134b3a5b023511cedbf322c52555 (patch) | |
tree | 3325d2bedf0c6feb0176cc09dd9e891b1f04cd51 /TAO/performance-tests/POA | |
parent | 302a8922dc1f825e4b6099525862a69131d38004 (diff) | |
download | ATCD-ad7084d385d8134b3a5b023511cedbf322c52555.tar.gz |
ChangeLogTag: Sat May 3 22:23:22 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/performance-tests/POA')
-rw-r--r-- | TAO/performance-tests/POA/Demux/Makefile.am | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/TAO/performance-tests/POA/Demux/Makefile.am b/TAO/performance-tests/POA/Demux/Makefile.am index 225509c280e..830f99e3258 100644 --- a/TAO/performance-tests/POA/Demux/Makefile.am +++ b/TAO/performance-tests/POA/Demux/Makefile.am @@ -16,6 +16,7 @@ TAO_IDL_DEP = $(TAO_BUILDDIR)/TAO_IDL/tao_idl TAO_IDLFLAGS = -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h -I$(TAO_ROOT) -I$(srcdir) -g $(ACE_BUILDDIR)/apps/gperf/src/gperf TAO_ROOT = $(top_srcdir) +noinst_PROGRAMS = ## Makefile.Demux_Poa_Idl.am @@ -49,9 +50,9 @@ noinst_HEADERS = \ if BUILD_EXCEPTIONS -noinst_LTLIBRARIES = libDemux_Poa_Client.la +noinst_PROGRAMS += client -libDemux_Poa_Client_la_CPPFLAGS = \ +client_CPPFLAGS = \ -I$(ACE_ROOT) \ -I$(ACE_BUILDDIR) \ -I$(TAO_ROOT) \ @@ -59,23 +60,28 @@ libDemux_Poa_Client_la_CPPFLAGS = \ -I$(TAO_ROOT)/orbsvcs \ -I$(TAO_BUILDDIR)/orbsvcs -libDemux_Poa_Client_la_SOURCES = \ +client_SOURCES = \ client.cpp \ demux_testC.cpp \ demux_testS.cpp \ - demux_test_client.cpp - -noinst_HEADERS += \ + demux_test_client.cpp \ demux_test_client.h \ demux_test_client.inl +client_LDADD = \ + $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ + $(TAO_BUILDDIR)/orbsvcs/orbsvcs/libTAO_CosNaming.la \ + $(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \ + $(TAO_BUILDDIR)/tao/libTAO.la \ + $(ACE_BUILDDIR)/ace/libACE.la + endif BUILD_EXCEPTIONS ## Makefile.Demux_Poa_Server.am if BUILD_EXCEPTIONS -noinst_PROGRAMS = server +noinst_PROGRAMS += server server_CPPFLAGS = \ -I$(ACE_ROOT) \ |