diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-22 14:09:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-22 14:09:46 +0000 |
commit | b8586b74a5a9b1a077f949dfcb58775a108f8619 (patch) | |
tree | 5817b1a74f58894adb29774cd940e667c839c49f /test | |
parent | e76c57ad467ed57f09f2a3ef51628d4b6eb2b304 (diff) | |
download | external_llvm-b8586b74a5a9b1a077f949dfcb58775a108f8619.zip external_llvm-b8586b74a5a9b1a077f949dfcb58775a108f8619.tar.gz external_llvm-b8586b74a5a9b1a077f949dfcb58775a108f8619.tar.bz2 |
Disable .d file generation for LLVM tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8052 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.tests | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests index 682ba0e..d3e14c6 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -13,6 +13,9 @@ ifdef TEST test:: endif +# We do not want to make .d files for tests! +DISABLE_AUTO_DEPENDENCIES=1 + include ${LEVEL}/Makefile.common # Specify ENABLE_STATS on the command line to enable -stats and -time-passes @@ -21,7 +24,6 @@ ifdef ENABLE_STATS STATS = -stats -time-passes endif - .PHONY: clean default # These files, which might be intermediate results, should not be deleted by |