X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=lib%2FTransforms%2FMakefile;h=c390517d07cd41ea3bc165740107c724026a8066;hp=bfdb2bf81d9808f32e98caa2761514d5a6906a75;hb=c18c3b8a3085f939e61f84aed7c345c0ba2b5d5f;hpb=9b8f542e2746b28721b3ec603c3aaaa10ea708fc 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