summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/Export/Makefile.bor7
-rw-r--r--examples/Export/export_dll.bor15
-rw-r--r--examples/Export/test.bor15
-rw-r--r--examples/IPC_SAP/ATM_SAP/Makefile.bor20
-rw-r--r--examples/IPC_SAP/FIFO_SAP/Makefile.bor23
-rw-r--r--examples/IPC_SAP/FILE_SAP/Makefile.bor19
-rw-r--r--examples/IPC_SAP/Makefile.bor15
-rw-r--r--examples/IPC_SAP/SOCK_SAP/Makefile.bor28
-rw-r--r--examples/IPC_SAP/SPIPE_SAP/Makefile.bor26
-rw-r--r--examples/IPC_SAP/UPIPE_SAP/Makefile.bor21
-rw-r--r--examples/Log_Msg/makefile.bor21
-rw-r--r--examples/Makefile.bor23
-rw-r--r--examples/Map_Manager/makefile.bor17
-rw-r--r--examples/Mem_Map/Makefile.bor10
-rw-r--r--examples/Mem_Map/file-reverse/makefile.bor17
-rw-r--r--examples/Misc/Makefile.bor27
-rw-r--r--examples/NT_Service/Makefile.bor21
-rw-r--r--examples/Naming/Makefile.bor22
-rw-r--r--examples/RMCast/Makefile.bor10
-rw-r--r--examples/RMCast/Send_File/Makefile.bor20
-rw-r--r--examples/Reactor/Dgram/Makefile.bor20
-rw-r--r--examples/Reactor/Makefile.bor14
-rw-r--r--examples/Reactor/Multicast/Makefile.bor10
-rw-r--r--examples/Reactor/Multicast/client.bor21
-rw-r--r--examples/Reactor/Multicast/server.bor21
-rw-r--r--examples/Reactor/Ntalker/Makefile.bor19
-rw-r--r--examples/Reactor/Proactor/Makefile.bor27
-rw-r--r--examples/Reactor/WFMO_Reactor/Makefile.bor34
-rw-r--r--examples/Registry/Makefile.bor20
-rw-r--r--examples/Service_Configurator/IPC-tests/Makefile.bor10
-rw-r--r--examples/Service_Configurator/IPC-tests/client/makefile.bor28
-rw-r--r--examples/Service_Configurator/Makefile.bor10
-rw-r--r--examples/Smart_Pointers/Makefile.bor9
-rw-r--r--examples/Smart_Pointers/gadget_test.bor24
-rw-r--r--examples/Smart_Pointers/widget_test.bor24
-rw-r--r--examples/Synch/Makefile.bor19
-rw-r--r--examples/Threads/Makefile.bor42
-rw-r--r--examples/Timer_Queue/Async_Timer_Queue_Test.bor22
-rw-r--r--examples/Timer_Queue/Makefile.bor9
-rw-r--r--examples/Timer_Queue/Reactor_Timer_Queue_Test.bor22
-rw-r--r--examples/Timer_Queue/Thread_Timer_Queue_Test.bor22
41 files changed, 0 insertions, 804 deletions
diff --git a/examples/Export/Makefile.bor b/examples/Export/Makefile.bor
deleted file mode 100644
index 255203ecbe8..00000000000
--- a/examples/Export/Makefile.bor
+++ /dev/null
@@ -1,7 +0,0 @@
-#
-# $Id$
-#
-
-MAKEFILES = export_dll.bor test.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Export/export_dll.bor b/examples/Export/export_dll.bor
deleted file mode 100644
index f4ca21b605a..00000000000
--- a/examples/Export/export_dll.bor
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# $Id$
-#
-
-NAME = export_dll
-
-OBJFILES = $(OBJDIR)\dll.obj
-
-CFLAGS = $(ACE_CFLAGS) -DTEST_BUILD_DLL
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_dll.bor>
diff --git a/examples/Export/test.bor b/examples/Export/test.bor
deleted file mode 100644
index 296250dae24..00000000000
--- a/examples/Export/test.bor
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# $Id$
-#
-
-NAME = test
-
-OBJFILES = $(OBJDIR)\$(NAME).obj
-
-CFLAGS = $(ACE_CFLAGS)
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB) $(CORE_BINDIR)\export_dll$(LIB_DECORATOR).lib
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/examples/IPC_SAP/ATM_SAP/Makefile.bor b/examples/IPC_SAP/ATM_SAP/Makefile.bor
deleted file mode 100644
index e0dfbb83fdd..00000000000
--- a/examples/IPC_SAP/ATM_SAP/Makefile.bor
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the IPC_SAP ATM_SAP example
-#
-
-NAMES = \
- CPP-client \
- CPP-server
-
-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/IPC_SAP/FIFO_SAP/Makefile.bor b/examples/IPC_SAP/FIFO_SAP/Makefile.bor
deleted file mode 100644
index 03899097b89..00000000000
--- a/examples/IPC_SAP/FIFO_SAP/Makefile.bor
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the IPC_SAP FIFO_SAP example
-#
-
-NAMES = \
- FIFO-client \
- FIFO-Msg-client \
- FIFO-Msg-server \
-# FIFO-test \
- FIFO-Server \
-
-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/IPC_SAP/FILE_SAP/Makefile.bor b/examples/IPC_SAP/FILE_SAP/Makefile.bor
deleted file mode 100644
index 5a9e4a2809b..00000000000
--- a/examples/IPC_SAP/FILE_SAP/Makefile.bor
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the IPC_SAP FILE_SAP example
-#
-
-NAMES = \
- client
-
-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/IPC_SAP/Makefile.bor b/examples/IPC_SAP/Makefile.bor
deleted file mode 100644
index fa6c69c0a92..00000000000
--- a/examples/IPC_SAP/Makefile.bor
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE IPC_SAP examples
-#
-
-DIRS = \
- ATM_SAP \
- FIFO_SAP \
- FILE_SAP \
- Sock_Sap \
- SPIPE_SAP \
- UPIPE_SAP
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/IPC_SAP/SOCK_SAP/Makefile.bor b/examples/IPC_SAP/SOCK_SAP/Makefile.bor
deleted file mode 100644
index c7ec081a350..00000000000
--- a/examples/IPC_SAP/SOCK_SAP/Makefile.bor
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the IPC_SAP SOCK_SAP ace examples
-#
-
-NAMES = \
- CPP-inclient \
- CPP-unclient \
- CPP-inserver \
- CPP-inserver-fancy \
- CPP-inserver-poll \
- CPP-unserver \
- FD-unclient \
- FD-unserver \
- C-inclient \
- C-inserver
-
-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/IPC_SAP/SPIPE_SAP/Makefile.bor b/examples/IPC_SAP/SPIPE_SAP/Makefile.bor
deleted file mode 100644
index a32c013be8e..00000000000
--- a/examples/IPC_SAP/SPIPE_SAP/Makefile.bor
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the IPC_SAP SPIPE_SAP ace examples
-#
-
-NAMES = \
- client \
- server \
- consumer_msg \
- consumer_read \
- producer_msg \
- producer_read \
-# NPClient \
-# NPServer
-
-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/IPC_SAP/UPIPE_SAP/Makefile.bor b/examples/IPC_SAP/UPIPE_SAP/Makefile.bor
deleted file mode 100644
index fb4f11a864c..00000000000
--- a/examples/IPC_SAP/UPIPE_SAP/Makefile.bor
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the IPC_SAP UPIPE_SAP example
-#
-
-NAMES = \
- ex1 \
- ex2 \
- ex3
-
-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/Log_Msg/makefile.bor b/examples/Log_Msg/makefile.bor
deleted file mode 100644
index a211624001e..00000000000
--- a/examples/Log_Msg/makefile.bor
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the log_msg ace examples
-#
-
-NAMES = \
- test_callback \
- test_log_msg \
- test_ostream
-
-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/Makefile.bor b/examples/Makefile.bor
deleted file mode 100644
index e1ed5935a28..00000000000
--- a/examples/Makefile.bor
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE examples
-#
-
-DIRS = \
- IPC_SAP \
- Log_Msg \
- Map_Manager \
- Mem_Map \
- Misc \
- Naming \
- NT_Service \
- Reactor \
- Registry \
- RMCast \
- Service_Configurator \
- Synch \
- Threads \
- Timer_Queue
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Map_Manager/makefile.bor b/examples/Map_Manager/makefile.bor
deleted file mode 100644
index c2c1ff59a24..00000000000
--- a/examples/Map_Manager/makefile.bor
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the test_hash_map_manager ace examples
-#
-
-NAME = test_hash_map_manager
-
-OBJFILES = $(OBJDIR)\$(NAME).obj
-
-CFLAGS = $(ACE_CFLAGS)
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/examples/Mem_Map/Makefile.bor b/examples/Mem_Map/Makefile.bor
deleted file mode 100644
index 841ea6e6b43..00000000000
--- a/examples/Mem_Map/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE Mem_Map examples
-#
-
-DIRS = \
- file-reverse
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Mem_Map/file-reverse/makefile.bor b/examples/Mem_Map/file-reverse/makefile.bor
deleted file mode 100644
index 5508441ee61..00000000000
--- a/examples/Mem_Map/file-reverse/makefile.bor
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the mem_map file-reserse ace examples
-#
-
-NAME = file-reverse
-
-OBJFILES = $(OBJDIR)\$(NAME).obj
-
-CFLAGS = $(ACE_CFLAGS)
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/examples/Misc/Makefile.bor b/examples/Misc/Makefile.bor
deleted file mode 100644
index e7ae51c5dfa..00000000000
--- a/examples/Misc/Makefile.bor
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# $Id$
-#
-# 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/NT_Service/Makefile.bor b/examples/NT_Service/Makefile.bor
deleted file mode 100644
index 859020d6287..00000000000
--- a/examples/NT_Service/Makefile.bor
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the NT_Service ace examples
-#
-
-NAME = NT_Service
-
-OBJFILES = \
- $(OBJDIR)\main.obj \
- $(OBJDIR)\ntsvc.obj
-
-CFLAGS = \
- $(ACE_CFLAGS)
-
-LIBFILES = \
- $(ACE_LIB)
-
-CPPDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/examples/Naming/Makefile.bor b/examples/Naming/Makefile.bor
deleted file mode 100644
index d42d4bf8cb5..00000000000
--- a/examples/Naming/Makefile.bor
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# $Id$
-#
-# 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/RMCast/Makefile.bor b/examples/RMCast/Makefile.bor
deleted file mode 100644
index 907b9e50311..00000000000
--- a/examples/RMCast/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE RMCast examples
-#
-
-DIRS = \
- Send_File
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/RMCast/Send_File/Makefile.bor b/examples/RMCast/Send_File/Makefile.bor
deleted file mode 100644
index e3ecef33e2d..00000000000
--- a/examples/RMCast/Send_File/Makefile.bor
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the RMCast Send_File ace examples
-#
-
-NAMES = \
- Receiver \
- Sender
-
-OBJFILES = $(OBJDIR)\$(NAME).obj
-
-CFLAGS = $(ACE_CFLAGS) $(ACE_RMCAST_CFLAGS)
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB) $(ACE_RMCAST_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
deleted file mode 100644
index 3ac638fa6ae..00000000000
--- a/examples/Reactor/Dgram/Makefile.bor
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# $Id$
-#
-# 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
deleted file mode 100644
index 5ce38e1031c..00000000000
--- a/examples/Reactor/Makefile.bor
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Reactor examples
-#
-
-DIRS = \
- Dgram \
- Multicast \
- Ntalker \
- Proactor \
- WFMO_Reactor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Reactor/Multicast/Makefile.bor b/examples/Reactor/Multicast/Makefile.bor
deleted file mode 100644
index d3299422de4..00000000000
--- a/examples/Reactor/Multicast/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Multicast example
-#
-
-MAKEFILES = client.bor server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
-
diff --git a/examples/Reactor/Multicast/client.bor b/examples/Reactor/Multicast/client.bor
deleted file mode 100644
index 3d9661ff554..00000000000
--- a/examples/Reactor/Multicast/client.bor
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the multicast client
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\Log_Wrapper.obj \
- $(OBJDIR)\client.obj
-
-CPPDIR = .
-
-LIBFILES = \
- $(ACE_LIB)
-
-CFLAGS = $(ACE_CFLAGS)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
-
diff --git a/examples/Reactor/Multicast/server.bor b/examples/Reactor/Multicast/server.bor
deleted file mode 100644
index 9115375bedd..00000000000
--- a/examples/Reactor/Multicast/server.bor
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Multicast server
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\Log_Wrapper.obj \
- $(OBJDIR)\server.obj
-
-CPPDIR = .
-
-LIBFILES = \
- $(ACE_LIB)
-
-CFLAGS = $(ACE_CFLAGS)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
-
diff --git a/examples/Reactor/Ntalker/Makefile.bor b/examples/Reactor/Ntalker/Makefile.bor
deleted file mode 100644
index 17a1aca7a13..00000000000
--- a/examples/Reactor/Ntalker/Makefile.bor
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# $Id$
-#
-# 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/Reactor/Proactor/Makefile.bor b/examples/Reactor/Proactor/Makefile.bor
deleted file mode 100644
index 8971381cc86..00000000000
--- a/examples/Reactor/Proactor/Makefile.bor
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE Proactor examples
-#
-
-NAMES = \
- simple_test_proactor \
- test_proactor \
- test_timeout \
- test_timeout_st \
- post_completions \
- test_end_event_loop \
- test_cancel \
- test_proactor2 \
- test_udp_proactor
-
-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/WFMO_Reactor/Makefile.bor b/examples/Reactor/WFMO_Reactor/Makefile.bor
deleted file mode 100644
index 2a33dcec9b2..00000000000
--- a/examples/Reactor/WFMO_Reactor/Makefile.bor
+++ /dev/null
@@ -1,34 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE WFMO_Reactor examples
-#
-
-NAMES = \
- Abandoned \
- APC \
- Console_Input \
- Directory_Changes \
- Exceptions \
- Handle_Close \
- Multithreading \
- Network_Events \
- Prerun_State_Changes \
- Registration \
- Registry_Changes \
- Removals \
- Suspended_Removals \
- Talker \
- Timeouts \
- Window_Messages
-
-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
deleted file mode 100644
index 93e877781a9..00000000000
--- a/examples/Registry/Makefile.bor
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# $Id$
-#
-# 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/Service_Configurator/IPC-tests/Makefile.bor b/examples/Service_Configurator/IPC-tests/Makefile.bor
deleted file mode 100644
index 0a614561d76..00000000000
--- a/examples/Service_Configurator/IPC-tests/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE IPC-tests Service_Configurator examples
-#
-
-DIRS = \
- client
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Service_Configurator/IPC-tests/client/makefile.bor b/examples/Service_Configurator/IPC-tests/client/makefile.bor
deleted file mode 100644
index 47bdcd07196..00000000000
--- a/examples/Service_Configurator/IPC-tests/client/makefile.bor
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE Service_Configurator IPC-tests client
-#
-
-NAMES = \
- local_dgram_client_test \
- local_stream_client_test \
- local_pipe_client_test \
- remote_stream_client_test \
- remote_thr_stream_client_test \
- remote_dgram_client_test \
- local_fifo_client_test \
- broadcast_client_test \
- local_spipe_client_test \
- remote_service_directory_test
-
-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/Service_Configurator/Makefile.bor b/examples/Service_Configurator/Makefile.bor
deleted file mode 100644
index a1dbc6e24aa..00000000000
--- a/examples/Service_Configurator/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE Service_Configurator examples
-#
-
-DIRS = \
- IPC-tests
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Smart_Pointers/Makefile.bor b/examples/Smart_Pointers/Makefile.bor
deleted file mode 100644
index 033a8a1de39..00000000000
--- a/examples/Smart_Pointers/Makefile.bor
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Smart_Pointers examples
-#
-
-MAKEFILES = widget_test.bor gadget_test.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Smart_Pointers/gadget_test.bor b/examples/Smart_Pointers/gadget_test.bor
deleted file mode 100644
index 44182ffbcb2..00000000000
--- a/examples/Smart_Pointers/gadget_test.bor
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Gadget example
-#
-
-NAME = gadget_test
-
-OBJFILES = \
- $(OBJDIR)\Gadget.obj \
- $(OBJDIR)\Gadget_Factory.obj \
- $(OBJDIR)\Gadget_Impl.obj \
- $(OBJDIR)\Gadget_Part.obj \
- $(OBJDIR)\Gadget_Part_Factory.obj \
- $(OBJDIR)\Gadget_Part_Impl.obj \
- $(OBJDIR)\gadget_test.obj
-
-CFLAGS = $(ACE_CFLAGS)
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/examples/Smart_Pointers/widget_test.bor b/examples/Smart_Pointers/widget_test.bor
deleted file mode 100644
index 8cda15b435b..00000000000
--- a/examples/Smart_Pointers/widget_test.bor
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Widget example
-#
-
-NAME = widget_test
-
-OBJFILES = \
- $(OBJDIR)\Widget.obj \
- $(OBJDIR)\Widget_Factory.obj \
- $(OBJDIR)\Widget_Impl.obj \
- $(OBJDIR)\Widget_Part.obj \
- $(OBJDIR)\Widget_Part_Factory.obj \
- $(OBJDIR)\Widget_Part_Impl.obj \
- $(OBJDIR)\widget_test.obj
-
-CFLAGS = $(ACE_CFLAGS)
-
-CPPDIR = .
-
-LIBFILES = $(ACE_LIB)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/examples/Synch/Makefile.bor b/examples/Synch/Makefile.bor
deleted file mode 100644
index 9f6c4c5baac..00000000000
--- a/examples/Synch/Makefile.bor
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# $Id$
-#
-# 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>
diff --git a/examples/Threads/Makefile.bor b/examples/Threads/Makefile.bor
deleted file mode 100644
index a1a4f1e9b0f..00000000000
--- a/examples/Threads/Makefile.bor
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the ACE Threads examples
-#
-
-NAMES = \
- auto_event \
- barrier1 \
- barrier2 \
- cancel \
- future1 \
- future2 \
- manual_event \
- process_manager \
- process_mutex \
- process_semaphore \
- reader_writer \
- recursive_mutex \
- task_one \
- task_two \
- task_three \
- task_four \
- task_five \
- thread_manager \
- thread_pool \
- thread_specific \
- token \
- tss1 \
- tss2 \
- wfmo
-
-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/Timer_Queue/Async_Timer_Queue_Test.bor b/examples/Timer_Queue/Async_Timer_Queue_Test.bor
deleted file mode 100644
index d54dc080a4b..00000000000
--- a/examples/Timer_Queue/Async_Timer_Queue_Test.bor
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Async_Timer_Queue_Test example
-#
-
-NAME = main_async
-
-OBJFILES = \
- $(OBJDIR)\Async_Timer_Queue_Test.obj \
- $(OBJDIR)\main_async.obj
-
-CPPDIR = .
-
-LIBFILES = \
- $(ACE_LIB)
-
-CFLAGS = \
- $(ACE_CFLAGS)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
-
diff --git a/examples/Timer_Queue/Makefile.bor b/examples/Timer_Queue/Makefile.bor
deleted file mode 100644
index bcd32b0d357..00000000000
--- a/examples/Timer_Queue/Makefile.bor
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Timer_Queue examples
-#
-
-MAKEFILES = Async_Timer_Queue_Test.bor Reactor_Timer_Queue_Test.bor Thread_Timer_Queue_Test.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/examples/Timer_Queue/Reactor_Timer_Queue_Test.bor b/examples/Timer_Queue/Reactor_Timer_Queue_Test.bor
deleted file mode 100644
index 343c9f38d1c..00000000000
--- a/examples/Timer_Queue/Reactor_Timer_Queue_Test.bor
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Reactor_Timer_Queue_Test example
-#
-
-NAME = main_reactor
-
-OBJFILES = \
- $(OBJDIR)\Reactor_Timer_Queue_Test.obj \
- $(OBJDIR)\main_reactor.obj
-
-CPPDIR = .
-
-LIBFILES = \
- $(ACE_LIB)
-
-CFLAGS = \
- $(ACE_CFLAGS)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
-
diff --git a/examples/Timer_Queue/Thread_Timer_Queue_Test.bor b/examples/Timer_Queue/Thread_Timer_Queue_Test.bor
deleted file mode 100644
index 7a0f919a6b0..00000000000
--- a/examples/Timer_Queue/Thread_Timer_Queue_Test.bor
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Thread_Timer_Queue_Test example
-#
-
-NAME = main_thread
-
-OBJFILES = \
- $(OBJDIR)\Thread_Timer_Queue_Test.obj \
- $(OBJDIR)\main_thread.obj
-
-CPPDIR = .
-
-LIBFILES = \
- $(ACE_LIB)
-
-CFLAGS = \
- $(ACE_CFLAGS)
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
-