diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-11-30 05:57:11 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-11-30 05:57:11 +0000 |
commit | d23f95ae2d0fb86128da0ab3e6e74a9b80fea808 (patch) | |
tree | cdbac19981455fe7a721edf704eac4f1e3d0154e /TAO/tests/Bug_2709_Regression | |
parent | 6a3340af2b967d7c6b3bc2b5a96f581fca0049f1 (diff) | |
download | ATCD-d23f95ae2d0fb86128da0ab3e6e74a9b80fea808.tar.gz |
ChangeLogTag: Thu Nov 30 05:52:05 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/tests/Bug_2709_Regression')
-rw-r--r-- | TAO/tests/Bug_2709_Regression/Bug_2709_Regression.mpc | 16 | ||||
-rw-r--r-- | TAO/tests/Bug_2709_Regression/Makefile.am | 63 |
2 files changed, 32 insertions, 47 deletions
diff --git a/TAO/tests/Bug_2709_Regression/Bug_2709_Regression.mpc b/TAO/tests/Bug_2709_Regression/Bug_2709_Regression.mpc index 6f953f02b7d..327011d9a80 100644 --- a/TAO/tests/Bug_2709_Regression/Bug_2709_Regression.mpc +++ b/TAO/tests/Bug_2709_Regression/Bug_2709_Regression.mpc @@ -1,7 +1,15 @@ // -*- MPC -*- -// $Id:$ +// $Id$ + +project(*idl): taoidldefaults { + IDL_Files { + Test.idl + } + custom_only = 1 +} project(*Client): taoserver, iortable, ftclientorb { + after += *idl exename = client Source_Files { TestS.cpp @@ -11,9 +19,12 @@ project(*Client): taoserver, iortable, ftclientorb { Server_Task.cpp TestImpl.cpp } + IDL_Files { + } } project(*Server): taoserver, iortable { + after += *Client exename = server Source_Files { TestC.cpp @@ -22,5 +33,6 @@ project(*Server): taoserver, iortable { Server_Task.cpp TestImpl.cpp } + IDL_Files { + } } - diff --git a/TAO/tests/Bug_2709_Regression/Makefile.am b/TAO/tests/Bug_2709_Regression/Makefile.am index c2dc4cea5cf..879f0dd283b 100644 --- a/TAO/tests/Bug_2709_Regression/Makefile.am +++ b/TAO/tests/Bug_2709_Regression/Makefile.am @@ -17,18 +17,10 @@ TAO_IDLFLAGS = -Ge 1 -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h -I$(T TAO_ROOT = $(top_srcdir) noinst_PROGRAMS = -CLEANFILES = -BUILT_SOURCES = -## Makefile.Bug_2709_Regression_Client.am - -if BUILD_ACE_UUID -if BUILD_CORBA_MESSAGING -if BUILD_EXCEPTIONS -if BUILD_INTERCEPTORS -if !BUILD_ACE_FOR_TAO +## Makefile.Bug_2709_Regression_Idl.am -BUILT_SOURCES += \ +BUILT_SOURCES = \ TestC.cpp \ TestC.h \ TestC.inl \ @@ -36,7 +28,7 @@ BUILT_SOURCES += \ TestS.h \ TestS.inl -CLEANFILES += \ +CLEANFILES = \ Test-stamp \ TestC.cpp \ TestC.h \ @@ -48,9 +40,21 @@ CLEANFILES += \ TestC.cpp TestC.h TestC.inl TestS.cpp TestS.h TestS.inl: Test-stamp Test-stamp: $(srcdir)/Test.idl $(TAO_IDL_DEP) - $(TAO_IDL) $(TAO_IDLFLAGS) -I$(TAO_ROOT)/orbsvcs $(srcdir)/Test.idl + $(TAO_IDL) $(TAO_IDLFLAGS) -Sa -St $(srcdir)/Test.idl @touch $@ + +noinst_HEADERS = \ + Test.idl + +## Makefile.Bug_2709_Regression_Client.am + +if BUILD_ACE_UUID +if BUILD_CORBA_MESSAGING +if BUILD_EXCEPTIONS +if BUILD_INTERCEPTORS +if !BUILD_ACE_FOR_TAO + noinst_PROGRAMS += client client_CPPFLAGS = \ @@ -70,11 +74,7 @@ client_SOURCES = \ client.cpp \ Client_Task.h \ Server_Task.h \ - TestC.h \ - TestC.inl \ - TestImpl.h \ - TestS.h \ - TestS.inl + TestImpl.h client_LDADD = \ $(TAO_BUILDDIR)/orbsvcs/orbsvcs/libTAO_FT_ClientORB.la \ @@ -102,29 +102,6 @@ endif BUILD_ACE_UUID if BUILD_EXCEPTIONS -BUILT_SOURCES += \ - TestC.cpp \ - TestC.h \ - TestC.inl \ - TestS.cpp \ - TestS.h \ - TestS.inl - -CLEANFILES += \ - Test-stamp \ - TestC.cpp \ - TestC.h \ - TestC.inl \ - TestS.cpp \ - TestS.h \ - TestS.inl - -TestC.cpp TestC.h TestC.inl TestS.cpp TestS.h TestS.inl: Test-stamp - -Test-stamp: $(srcdir)/Test.idl $(TAO_IDL_DEP) - $(TAO_IDL) $(TAO_IDLFLAGS) $(srcdir)/Test.idl - @touch $@ - noinst_PROGRAMS += server server_CPPFLAGS = \ @@ -140,11 +117,7 @@ server_SOURCES = \ TestS.cpp \ server.cpp \ Server_Task.h \ - TestC.h \ - TestC.inl \ - TestImpl.h \ - TestS.h \ - TestS.inl + TestImpl.h server_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_IORTable.la \ |