diff options
author | Steve Huston <shuston@riverace.com> | 1999-06-25 20:24:30 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-06-25 20:24:30 +0000 |
commit | 5cb1afeeac875f8530bf34c6e3b645bac34293e0 (patch) | |
tree | 052cfa9483bb2fb24d9d2cc0bda29cc5cc7fd90b /performance-tests | |
parent | 050ef553d13d3b97b34d3cfa4debc5a9f77277ed (diff) | |
download | ATCD-5cb1afeeac875f8530bf34c6e3b645bac34293e0.tar.gz |
Blow away tempinc dir between builds on AIX.
Diffstat (limited to 'performance-tests')
-rw-r--r-- | performance-tests/Misc/Makefile | 7 |
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 #---------------------------------------------------------------------------- |