summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9eb3e72d2c90be57d3605de9ef323beaa906c931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
##===- Makefile --------------------------------------------*- Makefile -*-===##
#
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##

# If FLANG_LEVEL is not set, then we are the top-level Makefile. Otherwise, we
# are being included from a subdirectory makefile.

ifndef FLANG_LEVEL

IS_TOP_LEVEL := 1
FLANG_LEVEL := .
DIRS := utils/TableGen include lib tools

PARALLEL_DIRS :=

endif

ifeq ($(MAKECMDGOALS),libs-only)
  DIRS := $(filter-out tools docs, $(DIRS))
  OPTIONAL_DIRS :=
endif

###
# Common Makefile code, shared by all Flang Makefiles.

# Set LLVM source root level.
LEVEL := $(FLANG_LEVEL)/../..

# Include LLVM common makefile.
include $(LEVEL)/Makefile.common

ifneq ($(ENABLE_DOCS),1)
  DIRS := $(filter-out docs, $(DIRS))
endif

# Set common Flang build flags.
CPP.Flags += -I$(PROJ_SRC_DIR)/$(FLANG_LEVEL)/include -I$(PROJ_OBJ_DIR)/$(FLANG_LEVEL)/include
ifdef FLANG_VENDOR
CPP.Flags += -DFLANG_VENDOR='"$(FLANG_VENDOR) "'
endif

# Disable -fstrict-aliasing. Darwin disables it by default (and LLVM doesn't
# work with it enabled with GCC), Flang/llvm-gc don't support it yet, and newer
# GCC's have false positive warnings with it on Linux (which prove a pain to
# fix). For example:
#
#   http://gcc.gnu.org/PR41874
#   http://gcc.gnu.org/PR41838
#
# We can revisit this when LLVM/Flang support it.
CXX.Flags += -fno-strict-aliasing

# Set up Flang's tblgen.
ifndef FLANG_TBLGEN
  ifeq ($(LLVM_CROSS_COMPILING),1)
    FLANG_TBLGEN := $(BuildLLVMToolDir)/flang-tblgen$(BUILD_EXEEXT)
  else
    FLANG_TBLGEN := $(LLVMToolDir)/flang-tblgen$(EXEEXT)
  endif
endif
FlangTableGen = $(FLANG_TBLGEN) $(TableGen.Flags)

###
# Flang Top Level specific stuff.

ifeq ($(IS_TOP_LEVEL),1)

ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
$(RecursiveTargets)::
	$(Verb) if [ ! -f test/Makefile ]; then \
	  $(MKDIR) test; \
	  $(CP) $(PROJ_SRC_DIR)/test/Makefile test/Makefile; \
	fi
endif

test::
	@ $(MAKE) -C test

report::
	@ $(MAKE) -C test report

clean::
	@ $(MAKE) -C test clean

libs-only: all

tags::
	$(Verb) etags `find . -type f -name '*.h' -or -name '*.cpp' | \
	  grep -v /lib/Headers | grep -v /test/`

cscope.files:
	find lib include -name '*.cpp' \
	             -or -name '*.def' \
	             -or -name '*.td' \
	             -or -name '*.h' > cscope.files

.PHONY: test report clean cscope.files

endif