summaryrefslogtreecommitdiff
path: root/examples/C++NPv2/Makefile.TPCLS
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-05-03 21:11:41 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-05-03 21:11:41 +0000
commit4a60be89a8b9ab5d41a23fb97ea2536036c72fc5 (patch)
treec1a2efbddcc07c8052ad9bb239e39e0b8ee22df9 /examples/C++NPv2/Makefile.TPCLS
parentb99901708ebbbe3f5d5da363bc22b5a6a18a1071 (diff)
downloadATCD-4a60be89a8b9ab5d41a23fb97ea2536036c72fc5.tar.gz
Makefiles must now be generated using MPC.
Diffstat (limited to 'examples/C++NPv2/Makefile.TPCLS')
-rw-r--r--examples/C++NPv2/Makefile.TPCLS62
1 files changed, 0 insertions, 62 deletions
diff --git a/examples/C++NPv2/Makefile.TPCLS b/examples/C++NPv2/Makefile.TPCLS
deleted file mode 100644
index 6dfeed17270..00000000000
--- a/examples/C++NPv2/Makefile.TPCLS
+++ /dev/null
@@ -1,62 +0,0 @@
-# -*- Makefile -*-
-
-#----------------------------------------------------------------------------
-# $Id$
-#
-# Makefile for the TPCLS library in the C++NPv2, Chapter 7 example.
-#----------------------------------------------------------------------------
-
-MAKEFILE = Makefile.TPCLS
-
-#----------------------------------------------------------------------------
-# Local macros
-#----------------------------------------------------------------------------
-
-# This example uses SSL.
-ifeq ($(ssl),)
-default:
- @echo 'This example requires SSL; build with make ssl=1'
-endif #ssl
-
-SHLIB = libTPCLS.$(SOEXT)
-FILES = TPC_Logging_Server \
- Logging_Handler
-LSRC = $(addsuffix .cpp,$(FILES))
-
-LIBS += $(ACELIB)
-
-BUILD = $(VSHLIB)
-
-#----------------------------------------------------------------------------
-# 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.lib.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
-
-#----------------------------------------------------------------------------
-# Local targets
-#----------------------------------------------------------------------------
-
-# To remake the DLL_Test source with xlC 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
-
-ifneq ($(ssl),)
- CPPFLAGS += $(PLATFORM_SSL_CPPFLAGS)
- LIBS += $(PLATFORM_SSL_LIBS)
- LDFLAGS += $(PLATFORM_SSL_LDFLAGS)
-endif # ssl
-
-ifeq ($(shared_libs),1)
-ifneq ($(SHLIB),)
-CPPFLAGS += -DTPCLS_BUILD_DLL
-endif
-endif