X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTransforms%2FMakefile;h=e527be25decb1f32cfa7b089eca8d1ceb06ef536;hb=170f06ebe2e80ce8bda87425081541493056fb10;hp=454c4760e4b4777d62735aebffd501a849dcca2e;hpb=7ba98a90008727e2fa0dfc1787cad71e1b6021eb;p=oota-llvm.git diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index 454c4760e4b..e527be25dec 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -1,14 +1,20 @@ ##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===## -# +# # The LLVM Compiler Infrastructure # -# This file was developed by the LLVM research group and is distributed under -# the University of Illinois Open Source License. See LICENSE.TXT for details. -# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# ##===----------------------------------------------------------------------===## LEVEL = ../.. -PARALLEL_DIRS = Utils Instrumentation Scalar IPO +PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello -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