diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-03-11 20:40:15 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-03-11 20:40:15 +0000 |
commit | 26d6e21c5361ad30f551cecaefddcaa1ed7f040f (patch) | |
tree | be85a46099782f4d756c21b238665525dd693482 | |
parent | c540b1fd010bb139ce3d97960d05570d1df8c858 (diff) |
I should definitely read make docs someday :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66699 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index bf27083108..5fe1eeb5c7 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -10,10 +10,11 @@ LEVEL = ../.. PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello +include $(LEVEL)/Makefile.config + # No support for plugins on windows targets ifeq ($(OS), $(filter $(OS), Cygwin MingW)) - PARALLEL_DIRS = $(filter-out Hello, $(PARALLEL_DIRS)) + PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS)) endif include $(LEVEL)/Makefile.common - |