diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-12-12 17:41:07 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-12-12 17:41:07 +0000 |
commit | 97abf95c241aae196ae3ad4b34475c0482d51a99 (patch) | |
tree | e050d840ca1175463c78f571dc14ea9807d22774 /TAO/tests/LongUpcalls | |
parent | 3f7dfc3b88e512b2c86a296fae2ba4639736a963 (diff) | |
download | ATCD-97abf95c241aae196ae3ad4b34475c0482d51a99.tar.gz |
ChangeLogTag: Tue Dec 12 17:34:25 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/tests/LongUpcalls')
-rw-r--r-- | TAO/tests/LongUpcalls/LongUpcalls.mpc | 36 | ||||
-rw-r--r-- | TAO/tests/LongUpcalls/Makefile.am | 115 |
2 files changed, 56 insertions, 95 deletions
diff --git a/TAO/tests/LongUpcalls/LongUpcalls.mpc b/TAO/tests/LongUpcalls/LongUpcalls.mpc index 13a0c026057..050e6e72952 100644 --- a/TAO/tests/LongUpcalls/LongUpcalls.mpc +++ b/TAO/tests/LongUpcalls/LongUpcalls.mpc @@ -1,37 +1,71 @@ // -*- MPC -*- // $Id$ +project(*idl): taoidldefaults, ami { + IDL_Files { + Test.idl + } + custom_only = 1 +} + project(*Server): taoserver, messaging, ami { exename = blocking_server + after += *idl Source_Files { Manager.cpp blocking_server.cpp } + Source_Files { + TestC.cpp + TestS.cpp + } + IDL_Files { + } } project(*Client): messaging, taoexe, portableserver, ami { + after += *idl after += *Server Source_Files { Controller.cpp blocking_client.cpp } + Source_Files { + TestC.cpp + TestS.cpp + } + IDL_Files { + } } project(*AMI_Server): taoserver, messaging, ami { exename = ami_server + after += *idl after += *Client Source_Files { AMI_Manager.cpp ami_server.cpp } + Source_Files { + TestC.cpp + TestS.cpp + } + IDL_Files { + } } project(*AMI_Client): messaging, taoexe, portableserver, ami { + after += *idl after += *AMI_Server Source_Files { Controller.cpp Manager_Handler.cpp ami_client.cpp } + Source_Files { + TestC.cpp + TestS.cpp + } + IDL_Files { + } } - diff --git a/TAO/tests/LongUpcalls/Makefile.am b/TAO/tests/LongUpcalls/Makefile.am index 01e53807ff2..667864f4276 100644 --- a/TAO/tests/LongUpcalls/Makefile.am +++ b/TAO/tests/LongUpcalls/Makefile.am @@ -17,16 +17,14 @@ 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.LongUpcalls_Server.am +## Makefile.LongUpcalls_Idl.am if BUILD_AMI if BUILD_CORBA_MESSAGING if BUILD_EXCEPTIONS -BUILT_SOURCES += \ +BUILT_SOURCES = \ TestC.cpp \ TestC.h \ TestC.inl \ @@ -34,7 +32,7 @@ BUILT_SOURCES += \ TestS.h \ TestS.inl -CLEANFILES += \ +CLEANFILES = \ Test-stamp \ TestC.cpp \ TestC.h \ @@ -49,6 +47,20 @@ Test-stamp: $(srcdir)/Test.idl $(TAO_IDL_DEP) $(TAO_IDL) $(TAO_IDLFLAGS) -GC $(srcdir)/Test.idl @touch $@ + +noinst_HEADERS = \ + Test.idl + +endif BUILD_EXCEPTIONS +endif BUILD_CORBA_MESSAGING +endif BUILD_AMI + +## Makefile.LongUpcalls_Server.am + +if BUILD_AMI +if BUILD_CORBA_MESSAGING +if BUILD_EXCEPTIONS + noinst_PROGRAMS += blocking_server blocking_server_CPPFLAGS = \ @@ -62,11 +74,7 @@ blocking_server_SOURCES = \ TestC.cpp \ TestS.cpp \ blocking_server.cpp \ - Manager.h \ - TestC.h \ - TestC.inl \ - TestS.h \ - TestS.inl + Manager.h blocking_server_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_Messaging.la \ @@ -88,29 +96,6 @@ if BUILD_AMI if BUILD_CORBA_MESSAGING 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) -GC $(srcdir)/Test.idl - @touch $@ - noinst_PROGRAMS += blocking_client blocking_client_CPPFLAGS = \ @@ -124,11 +109,7 @@ blocking_client_SOURCES = \ TestC.cpp \ TestS.cpp \ blocking_client.cpp \ - Controller.h \ - TestC.h \ - TestC.inl \ - TestS.h \ - TestS.inl + Controller.h blocking_client_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_Messaging.la \ @@ -150,29 +131,6 @@ if BUILD_AMI if BUILD_CORBA_MESSAGING 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) -GC $(srcdir)/Test.idl - @touch $@ - noinst_PROGRAMS += ami_server ami_server_CPPFLAGS = \ @@ -186,11 +144,7 @@ ami_server_SOURCES = \ TestC.cpp \ TestS.cpp \ ami_server.cpp \ - AMI_Manager.h \ - TestC.h \ - TestC.inl \ - TestS.h \ - TestS.inl + AMI_Manager.h ami_server_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_Messaging.la \ @@ -212,29 +166,6 @@ if BUILD_AMI if BUILD_CORBA_MESSAGING 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) -GC $(srcdir)/Test.idl - @touch $@ - noinst_PROGRAMS += ami_client ami_client_CPPFLAGS = \ @@ -250,11 +181,7 @@ ami_client_SOURCES = \ TestS.cpp \ ami_client.cpp \ Controller.h \ - Manager_Handler.h \ - TestC.h \ - TestC.inl \ - TestS.h \ - TestS.inl + Manager_Handler.h ami_client_LDADD = \ $(TAO_BUILDDIR)/tao/libTAO_Messaging.la \ |