diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-01-15 12:24:25 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-01-15 12:24:25 +0000 |
commit | 6aa19e81f563e34172ac447b1fdb441e64281f9f (patch) | |
tree | 77be6b2a50268b8016f33999004713e4a6f5a486 | |
parent | 63f355a2c97c41159897914fe202d419ec8b99ba (diff) | |
download | ATCD-6aa19e81f563e34172ac447b1fdb441e64281f9f.tar.gz |
ChangeLogTag: Tue Jan 15 13:21:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 8 | ||||
-rw-r--r-- | TAO/tests/Makefile.bor | 1 | ||||
-rw-r--r-- | TAO/tests/ORT/Makefile.bor | 7 | ||||
-rw-r--r-- | TAO/tests/ORT/client.bor | 39 | ||||
-rw-r--r-- | TAO/tests/ORT/server.bor | 45 |
5 files changed, 100 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 41150e8d996..bd7d921ebf8 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,11 @@ +Tue Jan 15 13:22:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> + + * tests/ORT/*.bor: + Added BCB makefiles for this test + + * tests/Makefile.bor: + Added new ORT test + Tue Jan 15 11:09:13 2002 Johnny Willemsen <jwillemsen@remedy.nl> * tao/PortableServer/Makefile.bor: diff --git a/TAO/tests/Makefile.bor b/TAO/tests/Makefile.bor index 54cc248a85e..73ab7c422f5 100644 --- a/TAO/tests/Makefile.bor +++ b/TAO/tests/Makefile.bor @@ -56,6 +56,7 @@ DIRS = \ Oneways_Invoking_Twoways \ ORB_destroy \ ORB_init \ + ORT \ Param_Test \ POA \ Policies \ diff --git a/TAO/tests/ORT/Makefile.bor b/TAO/tests/ORT/Makefile.bor new file mode 100644 index 00000000000..b4f7792abda --- /dev/null +++ b/TAO/tests/ORT/Makefile.bor @@ -0,0 +1,7 @@ +# +# Makefile for building the ORT test executables +# + +MAKEFILES = server.bor client.bor + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/tests/ORT/client.bor b/TAO/tests/ORT/client.bor new file mode 100644 index 00000000000..32826dd7b9b --- /dev/null +++ b/TAO/tests/ORT/client.bor @@ -0,0 +1,39 @@ +# +# Makefile for building the ORT client +# + +NAME = client + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 + +OBJFILES = \ + $(OBJDIR)\ORT_testC.obj \ + $(OBJDIR)\client.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_NAMING_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_NAMING_LIB) + +IDLFILES = \ + $(IDLDIR)\ORT_test.idl + +CPPDIR = . + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\ORT_testS.cpp $(IDLDIR)\ORT_testC.cpp: $(IDLDIR)\ORT_test.idl + $(TAO_IDL) $** diff --git a/TAO/tests/ORT/server.bor b/TAO/tests/ORT/server.bor new file mode 100644 index 00000000000..834ab5672ea --- /dev/null +++ b/TAO/tests/ORT/server.bor @@ -0,0 +1,45 @@ +# +# Makefile for building the ORT server +# + +NAME = server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 + +OBJFILES = \ + $(OBJDIR)\ORT_testS.obj \ + $(OBJDIR)\ORT_testC.obj \ + $(OBJDIR)\ORT_test_i.obj \ + $(OBJDIR)\ORT_test_IORInterceptor_ORBInitializer.obj \ + $(OBJDIR)\ORT_test_IORInterceptor.obj \ + $(OBJDIR)\server.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_IORTABLE_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_NAMING_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_IORTABLE_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_NAMING_LIB) + +IDLFILES = \ + $(IDLDIR)\ORT_test.idl + +CPPDIR = . + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\ORT_testS.cpp $(IDLDIR)\ORT_testC.cpp: $(IDLDIR)\ORT_test.idl + $(TAO_IDL) $** |