Makefile revision 070971866586bb0f45c7e5001b63ced0a1b64387
1##===- lib/CodeGen/Makefile --------------------------------*- Makefile -*-===##
2# 
3#                     The LLVM Compiler Infrastructure
4#
5# This file was developed by the LLVM research group and is distributed under
6# the University of Illinois Open Source License. See LICENSE.TXT for details.
7# 
8##===----------------------------------------------------------------------===##
9
10LEVEL = ../..
11include $(LEVEL)/Makefile.config
12LIBRARYNAME = LLVMCodeGen
13PARALLEL_DIRS = SelectionDAG
14BUILD_ARCHIVE = 1
15
16# Xcode prior to 2.4 generates an error in -pedantic mode with use of HUGE_VAL
17# in this directory.  Disable -pedantic for this broken compiler.
18ifneq ($(HUGE_VAL_SANITY),yes)
19CompileCommonOpts := $(filter-out -pedantic, $(CompileCommonOpts))
20endif
21
22include $(LEVEL)/Makefile.common
23