summaryrefslogtreecommitdiff
path: root/performance-tests
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1999-06-25 20:24:30 +0000
committerSteve Huston <shuston@riverace.com>1999-06-25 20:24:30 +0000
commit9b081ddad483a3175b7a816145390ba1fe342723 (patch)
tree052cfa9483bb2fb24d9d2cc0bda29cc5cc7fd90b /performance-tests
parent40cdf7eff65e4c297f49f31c6a7f97a5a493bbc8 (diff)
downloadATCD-9b081ddad483a3175b7a816145390ba1fe342723.tar.gz
Blow away tempinc dir between builds on AIX.
Diffstat (limited to 'performance-tests')
-rw-r--r--performance-tests/Misc/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/performance-tests/Misc/Makefile b/performance-tests/Misc/Makefile
index 371aadc432c..66949845b89 100644
--- a/performance-tests/Misc/Makefile
+++ b/performance-tests/Misc/Makefile
@@ -49,6 +49,13 @@ include $(ACE_ROOT)/include/makeinclude/rules.lib.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
+
#----------------------------------------------------------------------------
# Local targets
#----------------------------------------------------------------------------