1 ##===- Makefile --------------------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
10 # If CLANG_LEVEL is not set, then we are the top-level Makefile. Otherwise, we
11 # are being included from a subdirectory makefile.
17 DIRS
:= include lib tools runtime docs
21 ifeq ($(BUILD_EXAMPLES
),1)
22 PARALLEL_DIRS
+= examples
26 ifeq ($(MAKECMDGOALS
),libs-only
)
27 DIRS
:= $(filter-out tools docs
, $(DIRS
))
32 # Common Makefile code, shared by all Clang Makefiles.
34 # Set LLVM source root level.
35 LEVEL
:= $(CLANG_LEVEL
)/..
/..
37 # Include LLVM common makefile.
38 include $(LEVEL
)/Makefile.common
40 # Set common Clang build flags.
41 CPP.Flags
+= -I
$(PROJ_SRC_DIR
)/$(CLANG_LEVEL
)/include -I
$(PROJ_OBJ_DIR
)/$(CLANG_LEVEL
)/include
43 CPP.Flags
+= -DCLANG_VENDOR
='"$(CLANG_VENDOR) "'
46 # Disable -fstrict-aliasing. Darwin disables it by default (and LLVM doesn't
47 # work with it enabled with GCC), Clang/llvm-gc don't support it yet, and newer
48 # GCC's have false positive warnings with it on Linux (which prove a pain to
50 # http://gcc.gnu.org/PR41874
51 # http://gcc.gnu.org/PR41838
53 # We can revisit this when LLVM/Clang support it.
54 CXX.Flags
+= -fno-strict-aliasing
57 # Clang Top Level specific stuff.
59 ifeq ($(IS_TOP_LEVEL
),1)
61 ifneq ($(PROJ_SRC_ROOT
),$(PROJ_OBJ_ROOT
))
63 $(Verb
) if
[ ! -f
test/Makefile
]; then \
65 $(CP
) $(PROJ_SRC_DIR
)/test/Makefile
test/Makefile
; \
73 @
$(MAKE
) -C
test report
76 @
$(MAKE
) -C
test clean
81 $(Verb
) etags
`find . -type f -name '*.h' -or -name '*.cpp' | \
82 grep -v /lib/Headers | grep -v /test/`
85 find tools lib
include -name
'*.cpp' \
88 -or
-name
'*.h' > cscope.files
90 .PHONY
: test report
clean cscope.files