diff options
Diffstat (limited to 'TAO/tests/Smart_Proxies/On_Demand')
-rw-r--r-- | TAO/tests/Smart_Proxies/On_Demand/Makefile.bor | 7 | ||||
-rw-r--r-- | TAO/tests/Smart_Proxies/On_Demand/client.bor | 42 | ||||
-rw-r--r-- | TAO/tests/Smart_Proxies/On_Demand/server.bor | 40 |
3 files changed, 89 insertions, 0 deletions
diff --git a/TAO/tests/Smart_Proxies/On_Demand/Makefile.bor b/TAO/tests/Smart_Proxies/On_Demand/Makefile.bor new file mode 100644 index 00000000000..8b0814c137a --- /dev/null +++ b/TAO/tests/Smart_Proxies/On_Demand/Makefile.bor @@ -0,0 +1,7 @@ +# +# Makefile for building the Smart_Proxies On_Demand test executables +# + +MAKEFILES = client.bor server.bor + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/tests/Smart_Proxies/On_Demand/client.bor b/TAO/tests/Smart_Proxies/On_Demand/client.bor new file mode 100644 index 00000000000..3d203948b17 --- /dev/null +++ b/TAO/tests/Smart_Proxies/On_Demand/client.bor @@ -0,0 +1,42 @@ +# +# Makefile for building the Smart_Proxies On_Demand client +# + +NAME = client + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 -Gsp + +OBJFILES = \ + $(OBJDIR)\testC.obj \ + $(OBJDIR)\Smart_Proxy_Impl.obj \ + $(OBJDIR)\Smart_Test_Factory.obj \ + $(OBJDIR)\client.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_SMARTPROXIES_CFLAGS) + + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_SMARTPROXIES_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/tests/Smart_Proxies/On_Demand/server.bor b/TAO/tests/Smart_Proxies/On_Demand/server.bor new file mode 100644 index 00000000000..86508562107 --- /dev/null +++ b/TAO/tests/Smart_Proxies/On_Demand/server.bor @@ -0,0 +1,40 @@ +# +# Makefile for building the Smart_Proxies On_Demand server +# + +NAME = server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 -Gsp + +OBJFILES = \ + $(OBJDIR)\testS.obj \ + $(OBJDIR)\testC.obj \ + $(OBJDIR)\server.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + $(TAO_SMARTPROXIES_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + $(TAO_SMARTPROXIES_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) $** |