summaryrefslogtreecommitdiff
path: root/tests/Makefile.Test_Output
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile.Test_Output')
-rw-r--r--tests/Makefile.Test_Output55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/Makefile.Test_Output b/tests/Makefile.Test_Output
new file mode 100644
index 00000000000..a8f4a8b62c4
--- /dev/null
+++ b/tests/Makefile.Test_Output
@@ -0,0 +1,55 @@
+#----------------------------------------------------------------------------
+# $Id$
+#
+# Makefile for the Test_Output library
+#----------------------------------------------------------------------------
+
+#----------------------------------------------------------------------------
+# Local macros
+#----------------------------------------------------------------------------
+
+LIB = libTest_Output.a
+SHLIB = libTest_Output.$(SOEXT)
+FILES = Test_Output
+LSRC = $(addsuffix .cpp,$(FILES))
+
+LIBS += $(ACELIB)
+
+BUILD = $(VLIB) $(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
+
+# To remake the Test_Output 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
+
+#----------------------------------------------------------------------------
+# Local targets
+#----------------------------------------------------------------------------
+
+ifeq ($(shared_libs),1)
+ifneq ($(SHLIB),)
+CPPFLAGS += -DSERVICE_CONFIG_DLL_BUILD_DLL
+endif
+endif
+
+#----------------------------------------------------------------------------
+# Dependencies
+#----------------------------------------------------------------------------
+# DO NOT DELETE THIS LINE -- g++dep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
+
+
+# IF YOU PUT ANYTHING HERE IT WILL GO AWAY