diff options
Diffstat (limited to 'TAO/examples/AMH')
-rw-r--r-- | TAO/examples/AMH/Makefile.bor | 9 | ||||
-rw-r--r-- | TAO/examples/AMH/Sink_Server/Makefile.bor | 7 | ||||
-rw-r--r-- | TAO/examples/AMH/Sink_Server/client.bor | 40 | ||||
-rw-r--r-- | TAO/examples/AMH/Sink_Server/mt_server.bor | 43 | ||||
-rw-r--r-- | TAO/examples/AMH/Sink_Server/st_server.bor | 43 |
5 files changed, 142 insertions, 0 deletions
diff --git a/TAO/examples/AMH/Makefile.bor b/TAO/examples/AMH/Makefile.bor new file mode 100644 index 00000000000..fababca6836 --- /dev/null +++ b/TAO/examples/AMH/Makefile.bor @@ -0,0 +1,9 @@ + +# +# Makefile for building the AMH examples +# + +DIRS = \ + Sink_Server + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/examples/AMH/Sink_Server/Makefile.bor b/TAO/examples/AMH/Sink_Server/Makefile.bor new file mode 100644 index 00000000000..f1e3f7a83fd --- /dev/null +++ b/TAO/examples/AMH/Sink_Server/Makefile.bor @@ -0,0 +1,7 @@ +# +# Makefile for building the AMH Sink_Server test executables +# + +MAKEFILES = st_server.bor mt_server.bor client.bor + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/examples/AMH/Sink_Server/client.bor b/TAO/examples/AMH/Sink_Server/client.bor new file mode 100644 index 00000000000..dd135a763d3 --- /dev/null +++ b/TAO/examples/AMH/Sink_Server/client.bor @@ -0,0 +1,40 @@ +# +# Makefile for building the AMH Sink_Server client +# + +NAME = client + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -GH -Ge 1 + +OBJFILES = \ + $(OBJDIR)\testC.obj \ + $(OBJDIR)\testS.obj \ + $(OBJDIR)\client.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_STRATEGIES_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_STRATEGIES_LIB) + +IDLFILES = \ + $(IDLDIR)\test.idl + +CPPDIR = . + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl + $(TAO_IDL) $** diff --git a/TAO/examples/AMH/Sink_Server/mt_server.bor b/TAO/examples/AMH/Sink_Server/mt_server.bor new file mode 100644 index 00000000000..ff62ed08ad1 --- /dev/null +++ b/TAO/examples/AMH/Sink_Server/mt_server.bor @@ -0,0 +1,43 @@ +# +# Makefile for building the AMH Sink_Server mt_server +# + +NAME = mt_server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -GH -Ge 1 + +OBJFILES = \ + $(OBJDIR)\testC.obj \ + $(OBJDIR)\testS.obj \ + $(OBJDIR)\mt_server.obj \ + $(OBJDIR)\Base_Server.obj \ + $(OBJDIR)\AMH_Servant.obj \ + $(OBJDIR)\Timer_Handler.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_STRATEGIES_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_STRATEGIES_LIB) + +IDLFILES = \ + $(IDLDIR)\test.idl + +CPPDIR = . + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl + $(TAO_IDL) $** diff --git a/TAO/examples/AMH/Sink_Server/st_server.bor b/TAO/examples/AMH/Sink_Server/st_server.bor new file mode 100644 index 00000000000..933c2daaf40 --- /dev/null +++ b/TAO/examples/AMH/Sink_Server/st_server.bor @@ -0,0 +1,43 @@ +# +# Makefile for building the AMH Sink_Server st_server +# + +NAME = st_server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -GH -Ge 1 + +OBJFILES = \ + $(OBJDIR)\testC.obj \ + $(OBJDIR)\testS.obj \ + $(OBJDIR)\st_server.obj \ + $(OBJDIR)\Base_Server.obj \ + $(OBJDIR)\AMH_Servant.obj \ + $(OBJDIR)\Timer_Handler.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_STRATEGIES_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_STRATEGIES_LIB) + +IDLFILES = \ + $(IDLDIR)\test.idl + +CPPDIR = . + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl + $(TAO_IDL) $** |