blob: d68e500ca5f457fe9244215bcc607cc0a6849979 [file] [log] [blame]
Chris Lattner8dc2e282007-10-18 15:57:29 +00001##===- lib/Support/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 Lattnerf708c792003-10-05 19:24:38 +000010LEVEL = ../..
Reid Spencer6cb21d42004-10-27 23:18:45 +000011LIBRARYNAME = LLVMSupport
Chris Lattner56d27012002-07-23 17:52:38 +000012BUILD_ARCHIVE = 1
Vikram S. Adve6beedac2001-07-21 12:43:07 +000013
Chris Lattner8dc2e282007-10-18 15:57:29 +000014## FIXME: This only requires RTTI because tblgen uses it. Fix that.
15REQUIRES_RTTI = 1
16
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000017EXTRA_DIST = Unix Win32 README.txt
18
Vikram S. Adve6beedac2001-07-21 12:43:07 +000019include $(LEVEL)/Makefile.common
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000020
21CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
22CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))