X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTransforms%2FMakefile;h=e527be25decb1f32cfa7b089eca8d1ceb06ef536;hb=170f06ebe2e80ce8bda87425081541493056fb10;hp=c63bb7f1ef6b36496cc89ca891e13a51124b8753;hpb=f36aeedaa30b34b044c20e8ef5d43bd8c6c0e342;p=oota-llvm.git diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index c63bb7f1ef6..e527be25dec 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -1,16 +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 -LIBRARYNAME = LLVMTransforms -BUILD_ARCHIVE = 1 +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