-
Notifications
You must be signed in to change notification settings - Fork 420
/
Makefile
297 lines (244 loc) · 8.75 KB
/
Makefile
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
# Copyright 2020-2024 Hewlett Packard Enterprise Development LP
# Copyright 2004-2019 Cray Inc.
# Other additional copyright holders may be indicated within.
#
# The entirety of this work is licensed under the Apache License,
# Version 2.0 (the "License"); you may not use this file except
# in compliance with the License.
#
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# top-level Chapel Makefile
#
#
# This is the one Makefile that does not/should not include
# $CHPL_HOME/make/Makefile.base. The reasons are:
#
# (1) it does not need to include that file because it does not rely
# on any of its settings; it only is responsible for cd-ing into
# subdirectories and having them make things (where they should
# include Makefile.base).
#
# (2) including it will actually break the build because there are
# aspects of the CHPL_* environment that we don't know yet.
# Specifically, the third-party-try-opt rule speculatively tries to
# build GMP and RE2 if the user has not expressed a preference, and we
# can't know whether CHPL_GMP/RE2 should be set to 'none' or the
# package until those attempts to build complete. If Makefile.base is
# included here, it will set them for the make environment based on
# the current state of the world, not the
# post-attempt-to-build-gmp/re2 world.
#
#
# We set this to avoid extraneous printing of Makefile subdirectories
# by default. Having this un-set will break the Travis builds.
# Normally, Makefile.base sets this for our other Makefiles.
#
MAKEFLAGS = --no-print-directory
MODULES_TO_LINT = \
$(shell find $(CHPL_MAKE_HOME)/modules/dists -name '*.chpl')
export CHPL_MAKE_HOME=$(shell pwd)
export CHPL_MAKE_PYTHON := $(shell $(CHPL_MAKE_HOME)/util/config/find-python.sh)
default: all
all: comprt
@test -r Makefile.devel && $(MAKE) develall || echo ""
comprt: FORCE
@$(MAKE) compiler
@$(MAKE) third-party-try-opt
@$(MAKE) always-build-test-venv
@$(MAKE) always-build-chpldoc
@$(MAKE) always-build-chapel-py
@$(MAKE) always-build-cls-test
@$(MAKE) always-build-chplcheck
@$(MAKE) always-build-cls
@$(MAKE) runtime
@$(MAKE) modules
notcompiler: FORCE
@$(MAKE) third-party-try-opt
@$(MAKE) always-build-test-venv
@$(MAKE) runtime
@$(MAKE) modules
frontend: FORCE
@echo "Making the frontend compiler library..."
@cd third-party && $(MAKE) llvm
@cd third-party && $(MAKE) CHPL_MAKE_HOST_TARGET=--host jemalloc
@cd compiler && $(MAKE) frontend
frontend-shared: FORCE
@echo "Making the frontend compiler library (always shared)..."
@cd third-party && $(MAKE) llvm
@cd third-party && $(MAKE) CHPL_MAKE_HOST_TARGET=--host jemalloc
@cd compiler && $(MAKE) frontend-shared
compiler: FORCE
@echo "Making the compiler..."
@cd third-party && $(MAKE) llvm
@cd third-party && $(MAKE) CHPL_MAKE_HOST_TARGET=--host jemalloc
@cd compiler && $(MAKE)
parser: FORCE
@echo "Making the parser..."
@cd compiler && $(MAKE) parser
modules: FORCE
@echo "Making the modules..."
@cd modules && $(MAKE)
runtime: FORCE
@echo "Making the runtime..."
@cd runtime && $(MAKE)
third-party-try-opt: third-party-try-re2 third-party-try-gmp
third-party-try-re2: FORCE
cd third-party && $(MAKE) try-re2;
third-party-try-gmp: FORCE
cd third-party && $(MAKE) try-gmp;
third-party-test-venv: FORCE
@if [ -z "$$CHPL_DONT_BUILD_TEST_VENV" ]; then \
cd third-party && $(MAKE) test-venv; \
fi
third-party-chpldoc-venv: FORCE
@if [ -z "$$CHPL_DONT_BUILD_CHPLDOC_VENV" ]; then \
cd third-party && $(MAKE) chpldoc-venv; \
fi
third-party-c2chapel-venv: FORCE
@if [ -z "$$CHPL_DONT_BUILD_C2CHAPEL_VENV" ]; then \
cd third-party && $(MAKE) c2chapel-venv; \
fi
third-party-chapel-py-venv: FORCE
cd third-party && $(MAKE) chapel-py-venv;
test-venv: third-party-test-venv
chapel-py-venv: frontend-shared
$(MAKE) third-party-chapel-py-venv
cls-test-venv: FORCE chapel-py-venv
cd third-party && $(MAKE) cls-test-venv
chpldoc: third-party-chpldoc-venv
@cd third-party && $(MAKE) llvm
cd compiler && $(MAKE) chpldoc
@cd modules && $(MAKE)
@test -r Makefile.devel && $(MAKE) man-chpldoc || echo ""
always-build-test-venv: FORCE
-@if [ -n "$$CHPL_ALWAYS_BUILD_TEST_VENV" ]; then \
$(MAKE) test-venv; \
fi
always-build-chpldoc: FORCE
-@if [ -n "$$CHPL_ALWAYS_BUILD_CHPLDOC" ]; then \
$(MAKE) chpldoc; \
fi
always-build-chapel-py: FORCE
-@if [ -n "$$CHPL_ALWAYS_BUILD_CHAPEL_PY" ]; then \
$(MAKE) chapel-py-venv; \
fi
always-build-cls-test: FORCE
-@if [ -n "$$CHPL_ALWAYS_BUILD_CHAPEL_PY_TEST" ]; then \
$(MAKE) cls-test-venv; \
fi
always-build-chplcheck: FORCE
-@if [ -n "$$CHPL_ALWAYS_BUILD_CHPLCHECK" ]; then \
$(MAKE) chplcheck; \
fi
always-build-cls: FORCE
-@if [ -n "$$CHPL_ALWAYS_BUILD_CHPL_LANGUAGE_SERVER" ]; then \
$(MAKE) chpl-language-server; \
fi
chplvis: compiler third-party-fltk FORCE
cd tools/chplvis && $(MAKE)
cd tools/chplvis && $(MAKE) install
mason: compiler chpldoc notcompiler FORCE
cd tools/mason && $(MAKE) && $(MAKE) install
protoc-gen-chpl: chpldoc notcompiler FORCE
cd tools/protoc-gen-chpl && $(MAKE) && $(MAKE) install
c2chapel: third-party-c2chapel-venv FORCE
cd tools/c2chapel && $(MAKE)
cd tools/c2chapel && $(MAKE) install
chplcheck: frontend-shared FORCE
@# chplcheck's build files take care of ensuring the virtual env is built.
@# Best not to depend on chapel-py-venv here, because at the time of
@# writing this target is always FORCEd (so we'd end up building it twice).
cd tools/chplcheck && $(MAKE) all install
chpl-language-server: frontend-shared FORCE
@# chpl-language-server's build files take care of ensuring the virtual
@# env is built. Best not to depend on chapel-py-venv here, because at
@# the time of writing this target is always FORCEd (so we'd end up
@# building it twice).
cd tools/chpl-language-server && $(MAKE) all install
lint-standard-modules: chplcheck FORCE
tools/chplcheck/chplcheck --skip-unstable \
--internal-prefix "_" \
--internal-prefix "chpl_" \
--disable-rule "ControlFlowParentheses" \
--disable-rule "UnusedFormal" \
$(MODULES_TO_LINT)
compile-util-python: FORCE
@if $(CHPL_MAKE_PYTHON) -m compileall -h > /dev/null 2>&1 ; then \
echo "Compiling Python scripts in util/" ; \
$(CHPL_MAKE_PYTHON) -m compileall util/config -q ; \
$(CHPL_MAKE_PYTHON) -m compileall util/chplenv -q ; \
if [ -d third-party/chpl-venv/install/chpldeps ] ; then \
echo "Compiling Python scripts in chpl-venv/" ; \
$(CHPL_MAKE_PYTHON) -m compileall third-party/chpl-venv/install/chpldeps/ -q ; \
fi ; \
else \
echo "Not compiling Python scripts - missing compileall" ; \
fi
third-party-fltk: FORCE
cd third-party/fltk && $(MAKE)
clean: FORCE
cd compiler && $(MAKE) clean
cd modules && $(MAKE) clean
cd runtime && $(MAKE) clean
cd third-party && $(MAKE) clean
cd tools/chpldoc && $(MAKE) clean
if [ -e doc/Makefile ]; then cd doc && $(MAKE) clean; fi
rm -f util/chplenv/*.pyc
cleanall: FORCE
cd compiler && $(MAKE) cleanall
cd modules && $(MAKE) cleanall
cd runtime && $(MAKE) cleanall
cd third-party && $(MAKE) cleanall
cd tools/chpldoc && $(MAKE) cleanall
if [ -e doc/Makefile ]; then cd doc && $(MAKE) cleanall; fi
rm -f util/chplenv/*.pyc
rm -rf build
cleandeps: FORCE
cd compiler && $(MAKE) cleandeps
cd runtime && $(MAKE) cleandeps
clean-cmakecache: FORCE
cd compiler && $(MAKE) clean-cmakecache
clobber: FORCE
cd compiler && $(MAKE) clobber
cd modules && $(MAKE) clobber
cd runtime && $(MAKE) clobber
cd third-party && $(MAKE) clobber
cd tools/chplvis && $(MAKE) clobber
cd tools/c2chapel && $(MAKE) clobber
cd tools/mason && $(MAKE) clobber
-cd tools/protoc-gen-chpl && $(MAKE) clobber
cd tools/chpldoc && $(MAKE) clobber
cd tools/chpl-language-server && $(MAKE) clobber
cd tools/chplcheck && $(MAKE) clobber
if [ -e doc/Makefile ]; then cd doc && $(MAKE) clobber; fi
rm -rf bin
rm -rf lib
rm -rf build
rm -f util/chplenv/*.pyc
rm -rf util/chplenv/__pycache__
rm -rf util/config/__pycache__
rm -rf util/test/__pycache__
rm -f compiler/main/CONFIGURED_PREFIX
# these files might be generated by ./configure
rm -f configured-chplconfig configured-prefix configured-chpl-home chplconfig
depend:
@echo "make depend has been deprecated for the time being"
check:
@+CHPL_HOME=$(CHPL_MAKE_HOME) bash $(CHPL_MAKE_HOME)/util/test/checkChplInstall
check-chpldoc: chpldoc third-party-test-venv
@bash $(CHPL_MAKE_HOME)/util/test/checkChplDoc
install:
@bash $(CHPL_MAKE_HOME)/util/buildRelease/install.sh --stage=${DESTDIR}
-include Makefile.devel
FORCE:
# Don't want to try building e.g. GMP and RE2 at the same time
.NOTPARALLEL: