blob: 8b1df92fa28bf1a61e22faf1c97f1bd540a3d9b0 [file] [log] [blame]
John Criswelle488e932003-10-20 22:26:57 +00001##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
Misha Brukman9b8f5422009-01-09 16:44:42 +00002#
John Criswelle488e932003-10-20 22:26:57 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattnerfc643c52007-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 Brukman9b8f5422009-01-09 16:44:42 +00007#
John Criswelle488e932003-10-20 22:26:57 +00008##===----------------------------------------------------------------------===##
Chris Lattnerf36aeed2005-10-24 02:26:13 +00009
Chris Lattnerce2a5502001-10-13 16:57:03 +000010LEVEL = ../..
Hal Finkelde5e5ec2012-02-01 03:51:43 +000011PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Vectorize Hello
Chris Lattnerce2a5502001-10-13 16:57:03 +000012
Anton Korobeynikov26d6e212009-03-11 20:40:15 +000013include $(LEVEL)/Makefile.config
14
Anton Korobeynikov764f62b2010-04-15 19:51:42 +000015# No support for plugins on windows targets
16ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix))
Anton Korobeynikov26d6e212009-03-11 20:40:15 +000017 PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
Anton Korobeynikovad9d21a2009-03-11 19:49:42 +000018endif
19
Chris Lattnerce2a5502001-10-13 16:57:03 +000020include $(LEVEL)/Makefile.common