freebsd-dev/lib/Transforms/Makefile

21 lines
647 B
Makefile
Raw Normal View History

2009-06-02 17:52:33 +00:00
##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
2010-01-15 15:37:28 +00:00
PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello
2009-06-02 17:52:33 +00:00
include $(LEVEL)/Makefile.config
# No support for plugins on windows targets
2009-10-14 17:57:32 +00:00
ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
2009-06-02 17:52:33 +00:00
PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
endif
include $(LEVEL)/Makefile.common