X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTransforms%2FMakefile;h=c390517d07cd41ea3bc165740107c724026a8066;hb=35b114fe182430dcb42df5d21ae9a28993ee46d6;hp=bfdb2bf81d9808f32e98caa2761514d5a6906a75;hpb=9b8f542e2746b28721b3ec603c3aaaa10ea708fc;p=oota-llvm.git diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index bfdb2bf81d9..c390517d07c 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -8,7 +8,13 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. -PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello +PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Vectorize Hello ObjCARC -include $(LEVEL)/Makefile.common +include $(LEVEL)/Makefile.config + +# No support for plugins on windows targets +ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix)) + PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS)) +endif +include $(LEVEL)/Makefile.common