diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-27 06:59:46 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-27 06:59:46 +0000 |
commit | 14deaf4578253de715e807870f765cd78363ee53 (patch) | |
tree | 54a04a0614b95331398ffbbaa14cedf2eb1580e0 /TAO/examples/OBV | |
parent | 0531b6af61e37c2d77ab14dfabf6810dfd3ffef1 (diff) | |
download | ATCD-14deaf4578253de715e807870f765cd78363ee53.tar.gz |
ChangeLogTag: Tue Mar 12 07:28:45 2001 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/OBV')
-rw-r--r-- | TAO/examples/OBV/Makefile.bor | 9 | ||||
-rw-r--r-- | TAO/examples/OBV/Typed_Events/Makefile.bor | 7 | ||||
-rw-r--r-- | TAO/examples/OBV/Typed_Events/client.bor | 41 | ||||
-rw-r--r-- | TAO/examples/OBV/Typed_Events/server.bor | 41 |
4 files changed, 98 insertions, 0 deletions
diff --git a/TAO/examples/OBV/Makefile.bor b/TAO/examples/OBV/Makefile.bor new file mode 100644 index 00000000000..c4ebcafc314 --- /dev/null +++ b/TAO/examples/OBV/Makefile.bor @@ -0,0 +1,9 @@ + +# +# Makefile for building the TAO OBV examples +# + +DIRS = \ + Typed_Events + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/examples/OBV/Typed_Events/Makefile.bor b/TAO/examples/OBV/Typed_Events/Makefile.bor new file mode 100644 index 00000000000..a10097d9055 --- /dev/null +++ b/TAO/examples/OBV/Typed_Events/Makefile.bor @@ -0,0 +1,7 @@ +# +# Makefile for building the OBV Typed_Events example +# + +MAKEFILES = server.bor client.bor + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/examples/OBV/Typed_Events/client.bor b/TAO/examples/OBV/Typed_Events/client.bor new file mode 100644 index 00000000000..4998a9cdbbd --- /dev/null +++ b/TAO/examples/OBV/Typed_Events/client.bor @@ -0,0 +1,41 @@ +# +# Makefile for building the OBV Typed_Events executable +# + +NAME = client + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 -Gv + +OBJFILES = \ + $(OBJDIR)\Event_TypesC.obj \ + $(OBJDIR)\Event_TypesS.obj \ + $(OBJDIR)\Event_Types_impl.obj \ + $(OBJDIR)\Client_i.obj \ + $(OBJDIR)\Simple_util.obj \ + $(OBJDIR)\client.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) + +IDLFILES = \ + $(IDLDIR)\Event_Types.idl + +CPPDIR = .;.. + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\Event_TypesS.cpp $(IDLDIR)\Event_TypesC.cpp: $(IDLDIR)\Event_Types.idl + $(TAO_IDL) $** diff --git a/TAO/examples/OBV/Typed_Events/server.bor b/TAO/examples/OBV/Typed_Events/server.bor new file mode 100644 index 00000000000..fa6c883ba8e --- /dev/null +++ b/TAO/examples/OBV/Typed_Events/server.bor @@ -0,0 +1,41 @@ +# +# Makefile for building the OBV Typed_Events executable +# + +NAME = server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 -Gv + +OBJFILES = \ + $(OBJDIR)\Event_TypesC.obj \ + $(OBJDIR)\Event_TypesS.obj \ + $(OBJDIR)\Server_i.obj \ + $(OBJDIR)\Event_Types_impl.obj \ + $(OBJDIR)\Simple_util.obj \ + $(OBJDIR)\server.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) + +IDLFILES = \ + $(IDLDIR)\Event_Types.idl + +CPPDIR = .;.. + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\Event_TypesS.cpp $(IDLDIR)\Event_TypesC.cpp: $(IDLDIR)\Event_Types.idl + $(TAO_IDL) $** |