blob: 025d02ad30737fdba577989577fed63004da7456 [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 = ../..
11PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello
12
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