diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-04-10 11:00:20 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-04-10 11:00:20 +0000 |
commit | ffa665f355495628abf1d4f360a8e8f583f068f3 (patch) | |
tree | df16acd8e30a2ed82562158ffade7736e68dfa9d | |
parent | e1edb9fe8ec173bd28ae09525949d0f91f0bb3e9 (diff) | |
download | ATCD-ffa665f355495628abf1d4f360a8e8f583f068f3.tar.gz |
ChangeLogTag: Tue Apr 10 12:48:36 2001 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 3 | ||||
-rw-r--r-- | TAO/examples/POA/Loader/Makefile.bor | 25 | ||||
-rw-r--r-- | TAO/examples/POA/Makefile.bor | 3 | ||||
-rw-r--r-- | TAO/examples/POA/On_Demand_Activation/Makefile.bor | 27 | ||||
-rw-r--r-- | TAO/examples/POA/On_Demand_Loading/Makefile.bor | 29 | ||||
-rw-r--r-- | TAO/examples/POA/Reference_Counted_Servant/Makefile.bor | 25 |
6 files changed, 112 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 5f2ab3905ea..a2bd1405c72 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -3,6 +3,9 @@ Tue Apr 10 11:05:12 2001 Johnny Willemsen <jwillemsen@remedy.nl> * examples/POA/Adapter_Activator/makefile.bor * examples/POA/Generic_Servant/makefile.bor * examples/POA/Explicit_Activation/makefile.bor + * examples/POA/On_Demand_Activation/makefile.bor + * examples/POA/On_Demand_Loading/makefile.bor + * examples/POA/Reference_Counted_Servant/makefile.bor * examples/POA/makefile.bor Created BCB makefiles diff --git a/TAO/examples/POA/Loader/Makefile.bor b/TAO/examples/POA/Loader/Makefile.bor new file mode 100644 index 00000000000..68283489ecd --- /dev/null +++ b/TAO/examples/POA/Loader/Makefile.bor @@ -0,0 +1,25 @@ +# +# Makefile for building the POA Loader executable +# + +NAME = server + +OBJFILES = \ + $(OBJDIR)\server.obj \ + $(OBJDIR)\servant_activator.obj \ + $(OBJDIR)\servant_locator.obj \ + $(OBJDIR)\server_manager.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) + +CPPDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/TAO/examples/POA/Makefile.bor b/TAO/examples/POA/Makefile.bor index 271bdd47504..05260522a97 100644 --- a/TAO/examples/POA/Makefile.bor +++ b/TAO/examples/POA/Makefile.bor @@ -9,6 +9,9 @@ DIRS = \ Generic_Servant \ Adapter_Activator \ Explicit_Activation \ + On_Demand_Activation \ + On_Demand_Loading \ + Reference_Counted_Servant \ NewPOA \ RootPOA \ TIE diff --git a/TAO/examples/POA/On_Demand_Activation/Makefile.bor b/TAO/examples/POA/On_Demand_Activation/Makefile.bor new file mode 100644 index 00000000000..a70897bff4a --- /dev/null +++ b/TAO/examples/POA/On_Demand_Activation/Makefile.bor @@ -0,0 +1,27 @@ +# +# Makefile for building the POA On_Demand_Activation executable +# + +NAME = server + +OBJFILES = \ + $(OBJDIR)\server.obj \ + $(OBJDIR)\servant_activator.obj \ + $(OBJDIR)\servant_locator.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + -I..\Generic_Servant \ + -DGENERIC_SERVANT_BUILD_DLL=$(DLL_FLAG) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + ..\Generic_Servant\$(BINDIR)\Generic_Servant$(LIB_DECORATOR).lib + +CPPDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/TAO/examples/POA/On_Demand_Loading/Makefile.bor b/TAO/examples/POA/On_Demand_Loading/Makefile.bor new file mode 100644 index 00000000000..5a2ea15b0e1 --- /dev/null +++ b/TAO/examples/POA/On_Demand_Loading/Makefile.bor @@ -0,0 +1,29 @@ +# +# Makefile for building the POA On_Demand_Loading executable +# + +NAME = server + +OBJFILES = \ + $(OBJDIR)\server.obj \ + $(OBJDIR)\servant_activator.obj \ + $(OBJDIR)\servant_locator.obj \ + $(OBJDIR)\server_manager.obj \ + $(OBJDIR)\servant_manager.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + -I..\Generic_Servant \ + -DGENERIC_SERVANT_BUILD_DLL=$(DLL_FLAG) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + ..\Generic_Servant\$(BINDIR)\Generic_Servant$(LIB_DECORATOR).lib + +CPPDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/TAO/examples/POA/Reference_Counted_Servant/Makefile.bor b/TAO/examples/POA/Reference_Counted_Servant/Makefile.bor new file mode 100644 index 00000000000..9d73613156c --- /dev/null +++ b/TAO/examples/POA/Reference_Counted_Servant/Makefile.bor @@ -0,0 +1,25 @@ +# +# Makefile for building the POA Reference_Counted_Servant executable +# + +NAME = server + +OBJFILES = \ + $(OBJDIR)\server.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) \ + -I..\Generic_Servant \ + -DGENERIC_SERVANT_BUILD_DLL=$(DLL_FLAG) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) \ + ..\Generic_Servant\$(BINDIR)\Generic_Servant$(LIB_DECORATOR).lib + +CPPDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> |