blob: 6f472f2cc8eaab8df7f1253a333915ba8450d854 [file] [log] [blame]
Daniel Dunbare6c1daa2010-06-08 20:34:181##===- Makefile --------------------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9
10# If CLANG_LEVEL is not set, then we are the top-level Makefile. Otherwise, we
11# are being included from a subdirectory makefile.
12
13ifndef CLANG_LEVEL
14
15IS_TOP_LEVEL := 1
16CLANG_LEVEL := .
Daniel Dunbar8d65fc82010-06-30 22:10:3817DIRS := include lib tools runtime docs
Chris Lattner22eb9722006-06-18 05:43:1218
Daniel Dunbar9b30eb72009-11-15 00:22:3319PARALLEL_DIRS :=
20
21ifeq ($(BUILD_EXAMPLES),1)
22 PARALLEL_DIRS += examples
23endif
Daniel Dunbare6c1daa2010-06-08 20:34:1824endif
Daniel Dunbar9b30eb72009-11-15 00:22:3325
Chris Lattner40ad0a22010-06-19 06:35:2526ifeq ($(MAKECMDGOALS),libs-only)
27 DIRS := $(filter-out tools docs, $(DIRS))
28 OPTIONAL_DIRS :=
29endif
30
Daniel Dunbare6c1daa2010-06-08 20:34:1831###
32# Common Makefile code, shared by all Clang Makefiles.
33
34# Set LLVM source root level.
35LEVEL := $(CLANG_LEVEL)/../..
36
37# Include LLVM common makefile.
Chris Lattner22eb9722006-06-18 05:43:1238include $(LEVEL)/Makefile.common
Chris Lattner09d58042006-11-21 05:01:5639
NAKAMURA Takumid477fe52010-11-14 03:29:2740ifneq ($(ENABLE_DOCS),1)
41 DIRS := $(filter-out docs, $(DIRS))
42endif
43
Daniel Dunbaree6b6922010-06-08 20:44:4344# Set common Clang build flags.
45CPP.Flags += -I$(PROJ_SRC_DIR)/$(CLANG_LEVEL)/include -I$(PROJ_OBJ_DIR)/$(CLANG_LEVEL)/include
46ifdef CLANG_VENDOR
47CPP.Flags += -DCLANG_VENDOR='"$(CLANG_VENDOR) "'
48endif
49
Daniel Dunbar40fee632010-06-08 21:55:0250# Disable -fstrict-aliasing. Darwin disables it by default (and LLVM doesn't
Eric Christopher7d5f2ff2011-01-07 22:44:4951# work with it enabled with GCC), Clang/llvm-gcc don't support it yet, and newer
Daniel Dunbar40fee632010-06-08 21:55:0252# GCC's have false positive warnings with it on Linux (which prove a pain to
53# fix). For example:
54# http://gcc.gnu.org/PR41874
55# http://gcc.gnu.org/PR41838
56#
57# We can revisit this when LLVM/Clang support it.
58CXX.Flags += -fno-strict-aliasing
59
Daniel Dunbare6c1daa2010-06-08 20:34:1860###
61# Clang Top Level specific stuff.
62
63ifeq ($(IS_TOP_LEVEL),1)
64
Mike Stumpc9268d82009-01-20 21:10:4165ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Daniel Dunbar01ba2a72009-12-21 23:28:0666$(RecursiveTargets)::
Mike Stumpc9268d82009-01-20 21:10:4167 $(Verb) if [ ! -f test/Makefile ]; then \
68 $(MKDIR) test; \
69 $(CP) $(PROJ_SRC_DIR)/test/Makefile test/Makefile; \
70 fi
71endif
72
Chris Lattner09d58042006-11-21 05:01:5673test::
Kovarththanan Rajaratnam8fc5a802010-03-18 13:56:2074 @ $(MAKE) -C test
Gabor Greif2d2b401c2008-03-18 06:14:1675
76report::
Chris Lattner56a7bf52008-04-06 22:32:0177 @ $(MAKE) -C test report
Chris Lattner79ff0d42007-01-15 02:06:4778
79clean::
Chris Lattner56a7bf52008-04-06 22:32:0180 @ $(MAKE) -C test clean
Daniel Dunbarc3275c52010-06-25 17:33:4681
Chris Lattner40ad0a22010-06-19 06:35:2582libs-only: all
Gabor Greiff5eb2862008-03-20 14:28:2283
Mike Stump3f6c6312009-02-12 02:25:4784tags::
Kovarththanan Rajaratnam8fc5a802010-03-18 13:56:2085 $(Verb) etags `find . -type f -name '*.h' -or -name '*.cpp' | \
86 grep -v /lib/Headers | grep -v /test/`
Mike Stump3f6c6312009-02-12 02:25:4787
Daniel Dunbar0f62e982009-03-18 05:59:1488cscope.files:
Daniel Dunbare5a7ecc2009-03-24 03:00:1289 find tools lib include -name '*.cpp' \
Daniel Dunbar0f62e982009-03-18 05:59:1490 -or -name '*.def' \
91 -or -name '*.td' \
92 -or -name '*.h' > cscope.files
93
94.PHONY: test report clean cscope.files
Daniel Dunbare6c1daa2010-06-08 20:34:1895
96endif