summaryrefslogtreecommitdiff
path: root/examples/C++NPv1/Logging_Client.mak
diff options
context:
space:
mode:
Diffstat (limited to 'examples/C++NPv1/Logging_Client.mak')
-rw-r--r--examples/C++NPv1/Logging_Client.mak38
1 files changed, 0 insertions, 38 deletions
diff --git a/examples/C++NPv1/Logging_Client.mak b/examples/C++NPv1/Logging_Client.mak
deleted file mode 100644
index 2f635114283..00000000000
--- a/examples/C++NPv1/Logging_Client.mak
+++ /dev/null
@@ -1,38 +0,0 @@
-#----------------------------------------------------------------------------
-# $Id$
-#
-# Makefile for the logging client example program in "C++
-# Network Programming, Vol. 1, Resolving Complexity
-# Using Patterns and ACE"
-#----------------------------------------------------------------------------
-
-#----------------------------------------------------------------------------
-# Local macros
-#----------------------------------------------------------------------------
-
-BIN = Logging_Client
-
-FILES = Logging_Client
-
-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