blob: ea4a1158acc72ddf9a9730e46bd1b870194c2bc1 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
Misha Brukmane025bcc2009-01-09 16:44:42 +00002#
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattner80455b82007-12-29 20:09:26 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukmane025bcc2009-01-09 16:44:42 +00007#
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008##===----------------------------------------------------------------------===##
9
10LEVEL = ../..
Chris Lattnerfe6c6d12010-01-04 06:23:24 +000011PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012
Anton Korobeynikov84363ff2009-03-11 20:40:15 +000013include $(LEVEL)/Makefile.config
14
Anton Korobeynikov20acb4a2009-03-11 19:49:42 +000015# No support for plugins on windows targets
Anton Korobeynikov92c51812009-08-18 00:40:33 +000016ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Anton Korobeynikov84363ff2009-03-11 20:40:15 +000017 PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
Anton Korobeynikov20acb4a2009-03-11 19:49:42 +000018endif
19
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020include $(LEVEL)/Makefile.common