blob: 147313ca76d96bb9accec43a935da01cbb70bb48 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001##===- lib/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##===----------------------------------------------------------------------===##
9LEVEL = ..
10
Daniel Dunbar4771b9e2009-06-29 21:12:26 +000011include $(LEVEL)/Makefile.config
12
13PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
14 Target ExecutionEngine Debugger Linker MC
15
16# Only build the CompilerDriver when PIC is enabled.
17
18ifeq ($(ENABLE_PIC),1)
19PARALLEL_DIRS += CompilerDriver
20endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021
22include $(LEVEL)/Makefile.common
23