diff options
-rw-r--r-- | TAO/tests/Big_Request_Muxing/Makefile.bor | 7 | ||||
-rw-r--r-- | TAO/tests/Big_Request_Muxing/client.bor | 39 | ||||
-rw-r--r-- | TAO/tests/Big_Request_Muxing/server.bor | 39 | ||||
-rw-r--r-- | TAO/tests/Queued_Message_Test/makefile.bor | 16 | ||||
-rw-r--r-- | examples/Misc/Makefile.bor | 25 | ||||
-rw-r--r-- | examples/Naming/Makefile.bor | 20 | ||||
-rw-r--r-- | examples/Reactor/Dgram/Makefile.bor | 18 | ||||
-rw-r--r-- | examples/Reactor/Makefile.bor | 4 | ||||
-rw-r--r-- | examples/Reactor/Ntalker/Makefile.bor | 17 | ||||
-rw-r--r-- | examples/Registry/Makefile.bor | 18 | ||||
-rw-r--r-- | examples/Synch/Makefile.bor | 17 |
11 files changed, 219 insertions, 1 deletions
diff --git a/TAO/tests/Big_Request_Muxing/Makefile.bor b/TAO/tests/Big_Request_Muxing/Makefile.bor new file mode 100644 index 00000000000..19f31a4d882 --- /dev/null +++ b/TAO/tests/Big_Request_Muxing/Makefile.bor @@ -0,0 +1,7 @@ +# +# $Id$ +# + +MAKEFILES = server.bor client.bor + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/tests/Big_Request_Muxing/client.bor b/TAO/tests/Big_Request_Muxing/client.bor new file mode 100644 index 00000000000..501ff168fb1 --- /dev/null +++ b/TAO/tests/Big_Request_Muxing/client.bor @@ -0,0 +1,39 @@ +# +# $Id$ +# + +NAME = client + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 + +OBJFILES = \ + $(OBJDIR)\TestC.obj \ + $(OBJDIR)\TestS.obj \ + $(OBJDIR)\Client_Task.obj \ + $(OBJDIR)\client.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_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/Big_Request_Muxing/server.bor b/TAO/tests/Big_Request_Muxing/server.bor new file mode 100644 index 00000000000..d76b2e2950c --- /dev/null +++ b/TAO/tests/Big_Request_Muxing/server.bor @@ -0,0 +1,39 @@ +# +# $Id$ +# + +NAME = server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 + +OBJFILES = \ + $(OBJDIR)\TestC.obj \ + $(OBJDIR)\TestS.obj \ + $(OBJDIR)\Payload_Receiver.obj \ + $(OBJDIR)\server.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_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/Queued_Message_Test/makefile.bor b/TAO/tests/Queued_Message_Test/makefile.bor new file mode 100644 index 00000000000..927dc873689 --- /dev/null +++ b/TAO/tests/Queued_Message_Test/makefile.bor @@ -0,0 +1,16 @@ + +# +# Makefile for building the Queued_Message_Test +# + +NAME = Queued_Message_Test + +OBJFILES = \ + $(OBJDIR)\Queued_Message_Test.obj + +CPPDIR = .;.. + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_example.bor> + diff --git a/examples/Misc/Makefile.bor b/examples/Misc/Makefile.bor new file mode 100644 index 00000000000..677255b971b --- /dev/null +++ b/examples/Misc/Makefile.bor @@ -0,0 +1,25 @@ +# +# Makefile for building the ACE Misc examples +# + +NAMES = \ + test_dump \ + test_get_opt \ + test_profile_timer \ + test_read_buffer \ + test_set \ + test_sstring \ + test_trace \ + test_XtReactor1 \ + test_XtReactor2 + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/Naming/Makefile.bor b/examples/Naming/Makefile.bor new file mode 100644 index 00000000000..c532a201fbf --- /dev/null +++ b/examples/Naming/Makefile.bor @@ -0,0 +1,20 @@ +# +# Makefile for building the ACE Naming examples +# + +NAMES = \ + test_multiple_contexts \ + test_non_existent \ + test_open \ + test_writers + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/Reactor/Dgram/Makefile.bor b/examples/Reactor/Dgram/Makefile.bor new file mode 100644 index 00000000000..0211501bdfe --- /dev/null +++ b/examples/Reactor/Dgram/Makefile.bor @@ -0,0 +1,18 @@ +# +# Makefile for building the ACE Dgram reactor example +# + +NAMES = \ + CODgram \ + Dgram + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/Reactor/Makefile.bor b/examples/Reactor/Makefile.bor index 403b3d8417d..7193d55a2fd 100644 --- a/examples/Reactor/Makefile.bor +++ b/examples/Reactor/Makefile.bor @@ -3,6 +3,8 @@ # DIRS = \ - Multicast + Dgram \ + Multicast \ + Ntalker !include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/examples/Reactor/Ntalker/Makefile.bor b/examples/Reactor/Ntalker/Makefile.bor new file mode 100644 index 00000000000..5cd5ad5208a --- /dev/null +++ b/examples/Reactor/Ntalker/Makefile.bor @@ -0,0 +1,17 @@ +# +# Makefile for building the ACE Ntalker reactor example +# + +NAMES = \ + ntalker + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/Registry/Makefile.bor b/examples/Registry/Makefile.bor new file mode 100644 index 00000000000..be53a40eda9 --- /dev/null +++ b/examples/Registry/Makefile.bor @@ -0,0 +1,18 @@ +# +# Makefile for building the ACE Registry examples +# + +NAMES = \ + test_registry_update \ + test_registry_iterator + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/Synch/Makefile.bor b/examples/Synch/Makefile.bor new file mode 100644 index 00000000000..53e85fe83e9 --- /dev/null +++ b/examples/Synch/Makefile.bor @@ -0,0 +1,17 @@ +# +# Makefile for building the ACE Synch examples +# + +NAMES = \ + proc_sema + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> |