summaryrefslogtreecommitdiff
path: root/examples/C++NPv1/Makefile.Reactive_Logging_Server
diff options
context:
space:
mode:
Diffstat (limited to 'examples/C++NPv1/Makefile.Reactive_Logging_Server')
-rw-r--r--examples/C++NPv1/Makefile.Reactive_Logging_Server38
1 files changed, 0 insertions, 38 deletions
diff --git a/examples/C++NPv1/Makefile.Reactive_Logging_Server b/examples/C++NPv1/Makefile.Reactive_Logging_Server
deleted file mode 100644
index 0a2f801e2d7..00000000000
--- a/examples/C++NPv1/Makefile.Reactive_Logging_Server
+++ /dev/null
@@ -1,38 +0,0 @@
-#----------------------------------------------------------------------------
-# $Id$
-#
-# Makefile for the reactive logging server example program in
-# "C++ Network Programming, Vol. 1, Resolving Complexity
-# Using Patterns and ACE"
-#----------------------------------------------------------------------------
-
-#----------------------------------------------------------------------------
-# Local macros
-#----------------------------------------------------------------------------
-
-BIN = Reactive_Logging_Server
-
-FILES = Reactive_Logging_Server Logging_Server Logging_Handler
-
-SRC = $(addsuffix .cpp,$(FILES))
-OBJ = $(addsuffix .o,$(FILES))
-
-BUILD = $(VBIN)
-
-#----------------------------------------------------------------------------
-# Include macros and targets
-#----------------------------------------------------------------------------
-
-include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
-include $(ACE_ROOT)/include/makeinclude/macros.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
-
-# To build multiple executables in the same directory on AIX, it works
-# best to wipe out any previously-created tempinc directory.
-# The compiler/linker isn't too smart about instantiating templates...
-ifdef TEMPINCDIR
-COMPILE.cc := $(RM) -rf tempinc; $(COMPILE.cc)
-endif