blob: 288f3d4028d8087ff26bdd5ea19672aaf1816e26 [file] [log] [blame]
Daniel Dunbarafed0992010-06-08 20:34:18 +00001##===- 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 := .
Peter Collingbourne51d77772011-10-06 13:03:08 +000017DIRS := utils/TableGen include lib tools runtime docs unittests
Reid Spencer5f016e22007-07-11 17:01:13 +000018
Daniel Dunbar297b0832009-11-15 00:22:33 +000019PARALLEL_DIRS :=
20
21ifeq ($(BUILD_EXAMPLES),1)
22 PARALLEL_DIRS += examples
23endif
Daniel Dunbarafed0992010-06-08 20:34:18 +000024endif
Daniel Dunbar297b0832009-11-15 00:22:33 +000025
Chris Lattnerc56bc312010-06-19 06:35:25 +000026ifeq ($(MAKECMDGOALS),libs-only)
27 DIRS := $(filter-out tools docs, $(DIRS))
28 OPTIONAL_DIRS :=
29endif
Bill Wendling615c3dd2012-09-30 11:23:30 +000030ifeq ($(MAKECMDGOALS),clang-only)
31 DIRS := $(filter-out tools docs unittests, $(DIRS))
32 tools/driver tools/libclang
33 OPTIONAL_DIRS :=
34endif
Chris Lattnerc56bc312010-06-19 06:35:25 +000035
Daniel Dunbarafed0992010-06-08 20:34:18 +000036###
37# Common Makefile code, shared by all Clang Makefiles.
38
39# Set LLVM source root level.
40LEVEL := $(CLANG_LEVEL)/../..
41
42# Include LLVM common makefile.
Reid Spencer5f016e22007-07-11 17:01:13 +000043include $(LEVEL)/Makefile.common
44
NAKAMURA Takumi6c7b42f2010-11-14 03:29:27 +000045ifneq ($(ENABLE_DOCS),1)
46 DIRS := $(filter-out docs, $(DIRS))
47endif
48
Daniel Dunbarc4dec1c2010-06-08 20:44:43 +000049# Set common Clang build flags.
50CPP.Flags += -I$(PROJ_SRC_DIR)/$(CLANG_LEVEL)/include -I$(PROJ_OBJ_DIR)/$(CLANG_LEVEL)/include
51ifdef CLANG_VENDOR
52CPP.Flags += -DCLANG_VENDOR='"$(CLANG_VENDOR) "'
53endif
Daniel Dunbar9a4a9c22011-03-31 00:32:50 +000054ifdef CLANG_REPOSITORY_STRING
55CPP.Flags += -DCLANG_REPOSITORY_STRING='"$(CLANG_REPOSITORY_STRING)"'
56endif
Daniel Dunbarc4dec1c2010-06-08 20:44:43 +000057
Daniel Dunbar61f69d92010-06-08 21:55:02 +000058# Disable -fstrict-aliasing. Darwin disables it by default (and LLVM doesn't
Eric Christopher0574c782011-01-07 22:44:49 +000059# work with it enabled with GCC), Clang/llvm-gcc don't support it yet, and newer
Daniel Dunbar61f69d92010-06-08 21:55:02 +000060# GCC's have false positive warnings with it on Linux (which prove a pain to
61# fix). For example:
62# http://gcc.gnu.org/PR41874
63# http://gcc.gnu.org/PR41838
64#
65# We can revisit this when LLVM/Clang support it.
66CXX.Flags += -fno-strict-aliasing
67
Peter Collingbourne6ee5b932011-10-06 01:52:10 +000068# Set up Clang's tblgen.
69ifndef CLANG_TBLGEN
70 ifeq ($(LLVM_CROSS_COMPILING),1)
Peter Collingbourne51d77772011-10-06 13:03:08 +000071 CLANG_TBLGEN := $(BuildLLVMToolDir)/clang-tblgen$(BUILD_EXEEXT)
Peter Collingbourne6ee5b932011-10-06 01:52:10 +000072 else
Peter Collingbourne51d77772011-10-06 13:03:08 +000073 CLANG_TBLGEN := $(LLVMToolDir)/clang-tblgen$(EXEEXT)
Peter Collingbourne6ee5b932011-10-06 01:52:10 +000074 endif
75endif
76ClangTableGen = $(CLANG_TBLGEN) $(TableGen.Flags)
77
Daniel Dunbarafed0992010-06-08 20:34:18 +000078###
79# Clang Top Level specific stuff.
80
81ifeq ($(IS_TOP_LEVEL),1)
82
Mike Stumpadc981a2009-01-20 21:10:41 +000083ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Daniel Dunbara9829ae2009-12-21 23:28:06 +000084$(RecursiveTargets)::
Jeffrey Yasskin7a178892011-02-03 04:51:52 +000085 $(Verb) for dir in test unittests; do \
Douglas Gregor1456fec2011-09-27 21:28:10 +000086 if [ -f $(PROJ_SRC_DIR)/$${dir}/Makefile ] && [ ! -f $${dir}/Makefile ]; then \
Jeffrey Yasskin7a178892011-02-03 04:51:52 +000087 $(MKDIR) $${dir}; \
88 $(CP) $(PROJ_SRC_DIR)/$${dir}/Makefile $${dir}/Makefile; \
89 fi \
90 done
Mike Stumpadc981a2009-01-20 21:10:41 +000091endif
92
Reid Spencer5f016e22007-07-11 17:01:13 +000093test::
Kovarththanan Rajaratnam61736b42010-03-18 13:56:20 +000094 @ $(MAKE) -C test
Gabor Greifab72ffe2008-03-18 06:14:16 +000095
96report::
Chris Lattner9d294b92008-04-06 22:32:01 +000097 @ $(MAKE) -C test report
Reid Spencer5f016e22007-07-11 17:01:13 +000098
99clean::
Chris Lattner9d294b92008-04-06 22:32:01 +0000100 @ $(MAKE) -C test clean
Daniel Dunbara5107672010-06-25 17:33:46 +0000101
Chris Lattnerc56bc312010-06-19 06:35:25 +0000102libs-only: all
Gabor Greif5267d7c2008-03-20 14:28:22 +0000103
Mike Stump8ba82b32009-02-12 02:25:47 +0000104tags::
Kovarththanan Rajaratnam61736b42010-03-18 13:56:20 +0000105 $(Verb) etags `find . -type f -name '*.h' -or -name '*.cpp' | \
106 grep -v /lib/Headers | grep -v /test/`
Mike Stump8ba82b32009-02-12 02:25:47 +0000107
Daniel Dunbar432eeec2009-03-18 05:59:14 +0000108cscope.files:
Daniel Dunbar073777f2009-03-24 03:00:12 +0000109 find tools lib include -name '*.cpp' \
Daniel Dunbar432eeec2009-03-18 05:59:14 +0000110 -or -name '*.def' \
111 -or -name '*.td' \
112 -or -name '*.h' > cscope.files
113
114.PHONY: test report clean cscope.files
Daniel Dunbarafed0992010-06-08 20:34:18 +0000115
116endif