X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTransforms%2FMakefile;h=c390517d07cd41ea3bc165740107c724026a8066;hb=5939f08f5e7aa84fa154136a7977969c176a057e;hp=bf9599ad53b5b7af7149e879716b4a2c5fa89424;hpb=fc643c5e88c596f217750dd91fcc66488dfed73d;p=oota-llvm.git diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index bf9599ad53b..c390517d07c 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -1,14 +1,20 @@ ##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===## -# +# # The LLVM Compiler Infrastructure # # This file is distributed under the University of Illinois Open Source # License. See LICENSE.TXT for details. -# +# ##===----------------------------------------------------------------------===## 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