diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-12-06 15:36:29 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-12-06 15:36:29 +0000 |
commit | 04d4fd62f4da8e97aebf028f14d19209a7ed406c (patch) | |
tree | 082bae2bae11836f351d94a8e28bc527d7d532c5 /TAO/tests/Big_Reply | |
parent | 90967079902c5fbeb5e38561154d56ef3a0e71a4 (diff) | |
download | ATCD-04d4fd62f4da8e97aebf028f14d19209a7ed406c.tar.gz |
ChangeLogTag: Wed Dec 6 15:29:25 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/tests/Big_Reply')
-rw-r--r-- | TAO/tests/Big_Reply/Big_Reply.mpc | 16 | ||||
-rw-r--r-- | TAO/tests/Big_Reply/Makefile.am | 57 |
2 files changed, 31 insertions, 42 deletions
diff --git a/TAO/tests/Big_Reply/Big_Reply.mpc b/TAO/tests/Big_Reply/Big_Reply.mpc index 648403b35a4..ca9b2157786 100644 --- a/TAO/tests/Big_Reply/Big_Reply.mpc +++ b/TAO/tests/Big_Reply/Big_Reply.mpc @@ -1,20 +1,34 @@ // -*- MPC -*- // $Id$ +project(*idl): taoidldefaults { + IDL_Files { + Test.idl + } + custom_only = 1 +} + project(*Server): taoserver { - idlflags += -Sa -St + after += *idl after += *Client Source_Files { Big_Reply_i.cpp server.cpp + TestC.cpp + TestS.cpp + } + IDL_Files { } } project(*Client): taoclient { + after += *idl Source_Files { TestC.cpp Client_Task.cpp client.cpp } + IDL_Files { + } } diff --git a/TAO/tests/Big_Reply/Makefile.am b/TAO/tests/Big_Reply/Makefile.am index af07804cb7f..e2945bf6034 100644 --- a/TAO/tests/Big_Reply/Makefile.am +++ b/TAO/tests/Big_Reply/Makefile.am @@ -17,34 +17,40 @@ 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.Big_Reply_Client.am - -if BUILD_EXCEPTIONS +## Makefile.Big_Reply_Idl.am -BUILT_SOURCES += \ +BUILT_SOURCES = \ TestC.cpp \ TestC.h \ TestC.inl \ + TestS.cpp \ TestS.h \ TestS.inl -CLEANFILES += \ +CLEANFILES = \ Test-stamp \ TestC.cpp \ TestC.h \ TestC.inl \ + TestS.cpp \ TestS.h \ TestS.inl -TestC.cpp TestC.h TestC.inl TestS.h TestS.inl: Test-stamp +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) -Sa -St $(srcdir)/Test.idl @touch $@ + +noinst_HEADERS = \ + Test.idl + +## Makefile.Big_Reply_Client.am + +if BUILD_EXCEPTIONS + noinst_PROGRAMS += client client_CPPFLAGS = \ @@ -57,11 +63,7 @@ client_SOURCES = \ Client_Task.cpp \ TestC.cpp \ client.cpp \ - Client_Task.h \ - TestC.h \ - TestC.inl \ - TestS.h \ - TestS.inl + Client_Task.h client_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO.la \ @@ -73,29 +75,6 @@ endif BUILD_EXCEPTIONS 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) -Sa -St $(srcdir)/Test.idl - @touch $@ - noinst_PROGRAMS += server server_CPPFLAGS = \ @@ -109,11 +88,7 @@ server_SOURCES = \ TestC.cpp \ TestS.cpp \ server.cpp \ - Big_Reply_i.h \ - TestC.h \ - TestC.inl \ - TestS.h \ - TestS.inl + Big_Reply_i.h server_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ |