blob: 5fe1eeb5c75238085fd4e2c610750baff8039804 [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
16ifeq ($(OS), $(filter $(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