forked from agda/agda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
762 lines (615 loc) · 28 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
# Top-level Makefile for Agda 2
# Authors: Ulf Norell, Nils Anders Danielsson, Francesco Mazzoli, Liang-Ting Chen
# Profiling settings for std-lib-test
PROFILEOPTS=--profile=internal
# Various paths and commands
TOP=.
# mk/path.mk uses TOP, so include after the definition of TOP.
include ./mk/paths.mk
include ./mk/cabal.mk
include ./mk/stack.mk
# mk/prtty.mk pretty prints information, depending on whether it is run on Travis on not
include ./mk/pretty.mk
# Run in interactive and parallel mode by default
# You can use the PARALLEL_TESTS variable to control the number of parallel
# tests. The default is one per processor. Invoke make like this:
# make PARALLEL_TESTS=123 test
# Or set it in ./mk/config.mk, which is .gitignored
ifeq ($(PARALLEL_TESTS),)
PARALLEL_TESTS := $(shell getconf _NPROCESSORS_ONLN)
endif
AGDA_BIN_SUFFIX = -$(VERSION)
AGDA_TESTS_OPTIONS ?=-i -j$(PARALLEL_TESTS)
# A cabal/stack dictionary
CABAL_OPT_NO_DOCS = --disable-documentation
STACK_OPT_NO_DOCS = --no-haddock
CABAL_OPT_TESTS = --enable-tests
STACK_OPT_TESTS = --test --no-run-tests
CABAL_OPT_FAST = --ghc-options=-O0
STACK_OPT_FAST = --fast
CABAL_FLAG_ICU = -fenable-cluster-counting
STACK_FLAG_ICU = --flag Agda:enable-cluster-counting
CABAL_FLAG_OPTIM_HEAVY ?= -foptimise-heavily
STACK_FLAG_OPTIM_HEAVY ?= --flag Agda:optimise-heavily
CABAL_INSTALL_HELPER = $(CABAL) $(CABAL_INSTALL_CMD) $(CABAL_OPT_NO_DOCS)
STACK_INSTALL_HELPER = $(STACK) build Agda $(STACK_OPT_NO_DOCS)
# If running on Travis, use --system-ghc.
# Developers running `make` will usually want to use the GHC version they've
# specified in their stack.yaml. Otherwise they can put that option in
# themselves.
# Note that some GitHub workflows currently do not use the Makefile, but instead
# invoke `stack` directly. (See: .github/workflows/stack.yml)
ifneq ($(TRAVIS),)
STACK_INSTALL_HELPER += --system-ghc
endif
# 2016-07-15. We use a different build directory in the quick
# installation for avoiding recompilation (see Issue #2083 and
# https://github.com/haskell/cabal/issues/1893).
# quicker install: -O0, no tests
QUICK_CABAL_INSTALL = $(CABAL_INSTALL_HELPER) $(CABAL_OPT_FAST) --builddir=$(QUICK_BUILD_DIR)
QUICK_STACK_INSTALL = $(STACK_INSTALL_HELPER) $(STACK_OPT_FAST) --work-dir=$(QUICK_STACK_BUILD_DIR)
# fast install: -O0, but tests
FAST_CABAL_INSTALL = $(CABAL_INSTALL_HELPER) $(CABAL_OPT_TESTS) $(CABAL_OPT_FAST) --builddir=$(FAST_BUILD_DIR)
FAST_STACK_INSTALL = $(STACK_INSTALL_HELPER) $(STACK_OPT_TESTS) $(STACK_OPT_FAST) --work-dir=$(FAST_STACK_BUILD_DIR)
# ordinary install: optimizations and tests
SLOW_CABAL_INSTALL_OPTS = $(CABAL_OPT_TESTS) $(CABAL_FLAG_OPTIM_HEAVY) --builddir=$(BUILD_DIR)
SLOW_STACK_INSTALL_OPTS = $(STACK_OPT_TESTS) $(STACK_FLAG_OPTIM_HEAVY)
CABAL_INSTALL = $(CABAL_INSTALL_HELPER) $(SLOW_CABAL_INSTALL_OPTS)
STACK_INSTALL = $(STACK_INSTALL_HELPER) $(SLOW_STACK_INSTALL_OPTS)
# Depending on your machine and ghc version you might want to tweak the amount of memory
# given to ghc to compile Agda. To do this set GHC_RTS_OPTS in mk/config.mk (gitignored).
ifeq ($(GHC_RTS_OPTS),)
#
ifeq ("$(shell $(GHC) --info | grep 'target word size' | cut -d\" -f4)","4")
GHC_RTS_OPTS := -M2.3G
else ifeq ($(GHC_VERSION),9.0)
GHC_RTS_OPTS := -M6G
else ifeq ($(GHC_VERSION),8.10)
GHC_RTS_OPTS := -M6G
else
GHC_RTS_OPTS := -M4G
endif
#
endif
GHC_OPTS = "+RTS -A128M $(GHC_RTS_OPTS) -RTS"
# The following options are used in several invocations of cabal
# install/configure below. They are always the last options given to
# the command.
CABAL_INSTALL_OPTS =
STACK_INSTALL_OPTS =
# Only enable cluster-counting by default for non-Windows, due to agda/agda#5012
# The msys* and mingw* strings derived from: https://stackoverflow.com/a/18434831/141513
ifeq ($(filter msys% mingw%,$(shell echo "$${OSTYPE:-unknown}")),)
CABAL_INSTALL_OPTS += $(CABAL_FLAG_ICU)
STACK_INSTALL_OPTS += $(STACK_FLAG_ICU)
endif
CABAL_INSTALL_OPTS += --ghc-options=$(GHC_OPTS) $(CABAL_OPTS)
STACK_INSTALL_OPTS += --ghc-options $(GHC_OPTS) $(STACK_OPTS)
# Options for building Agda's dependencies.
CABAL_INSTALL_DEP_OPTS = --only-dependencies $(CABAL_INSTALL_OPTS)
STACK_INSTALL_DEP_OPTS = --only-dependencies $(STACK_INSTALL_OPTS)
# Options for building the Agda exectutable.
# -j1 so that cabal will print built progress to stdout.
CABAL_INSTALL_BIN_OPTS = -j1 --disable-library-profiling \
$(CABAL_INSTALL_OPTS)
STACK_INSTALL_BIN_OPTS = --no-library-profiling \
$(STACK_INSTALL_OPTS)
CABAL_CONFIGURE_OPTS = $(SLOW_CABAL_INSTALL_OPTS) \
--disable-library-profiling \
$(CABAL_INSTALL_OPTS)
##############################################################################
## Installation (via stack if stack.yaml is present)
.PHONY: default
default: install-bin
.PHONY: install ## Install Agda, test suites, and Emacs mode
install: install-bin compile-emacs-mode setup-emacs-mode
.PHONY: ensure-hash-is-correct
ensure-hash-is-correct:
touch src/full/Agda/VersionCommit.hs
.PHONY: copy-bins-with-suffix-% ## Copy binaries to local bin directory with suffix
copy-bins-with-suffix-%:
ifdef HAS_STACK
mkdir -p $(shell $(STACK) path --local-bin)
cp $(shell $(STACK) --work-dir=$(STACK_BUILD_DIR) path --dist-dir)/build/agda/agda $(shell $(STACK) path --local-bin)/agda-$*
cp $(shell $(STACK) --work-dir=$(STACK_BUILD_DIR) path --dist-dir)/build/agda-mode/agda-mode $(shell $(STACK) path --local-bin)/agda-mode-$*
endif
.PHONY: install-deps ## Install Agda dependencies.
install-deps:
ifdef HAS_STACK
@echo "===================== Installing dependencies using Stack ================"
time $(STACK_INSTALL) $(STACK_INSTALL_DEP_OPTS)
else
@echo "========================= Installing dependencies using Cabal ============"
time $(CABAL_INSTALL) $(CABAL_INSTALL_DEP_OPTS)
endif
.PHONY: install-bin ## Install Agda and test suites
install-bin: install-deps ensure-hash-is-correct
ifdef HAS_STACK
@echo "===================== Installing using Stack with test suites ============"
time $(STACK_INSTALL) $(STACK_INSTALL_BIN_OPTS)
mkdir -p $(BUILD_DIR)/build/
cp -r $(shell $(STACK) path --dist-dir)/build $(BUILD_DIR)
$(MAKE) copy-bins-with-suffix$(AGDA_BIN_SUFFIX)
else
# `cabal new-install --enable-tests` emits the error message (bug?):
# cabal: --enable-tests was specified, but tests can't be enabled in a remote package
@echo "===================== Installing using Cabal with test suites ============"
time $(CABAL_INSTALL) $(CABAL_INSTALL_BIN_OPTS) --program-suffix=$(AGDA_BIN_SUFFIX)
endif
.PHONY: v1-install ## Developer install goal without -foptimize-aggressively nor dependencies.
# Alternative to 'install-bin'
v1-install: ensure-hash-is-correct
ifdef HAS_STACK
@echo "===================== Installing using Stack with test suites ============"
time $(STACK_INSTALL_HELPER) $(STACK_INSTALL_BIN_OPTS) $(STACK_OPT_TESTS)
mkdir -p $(BUILD_DIR)/build/
cp -r $(shell $(STACK) path --dist-dir)/build $(BUILD_DIR)
$(MAKE) copy-bins-with-suffix$(AGDA_BIN_SUFFIX)
else
@echo "===================== Installing using Cabal with test suites ============"
time $(CABAL_INSTALL_HELPER) $(CABAL_INSTALL_BIN_OPTS) $(CABAL_OPT_TESTS) --builddir=$(BUILD_DIR) --program-suffix=$(AGDA_BIN_SUFFIX)
endif
.PHONY: fast-install-bin ## Install Agda compiled with -O0 with tests
fast-install-bin: install-deps fast-install-bin-no-deps
.PHONY: fast-install-bin-no-deps ##
fast-install-bin-no-deps:
ifdef HAS_STACK
@echo "============= Installing using Stack with -O0 and test suites ============"
time $(FAST_STACK_INSTALL) $(STACK_INSTALL_BIN_OPTS)
mkdir -p $(FAST_BUILD_DIR)/build/
cp -r $(shell $(STACK) path --work-dir=$(FAST_STACK_BUILD_DIR) --dist-dir)/build $(FAST_BUILD_DIR)
$(MAKE) copy-bins-with-suffix-fast STACK_BUILD_DIR=$(FAST_STACK_BUILD_DIR)
else
# `cabal new-install --enable-tests` emits the error message (bug?):
# cabal: --enable-tests was specified, but tests can't be enabled in a remote package
@echo "============= Installing using Cabal with -O0 and test suites ============"
time $(FAST_CABAL_INSTALL) $(CABAL_INSTALL_BIN_OPTS) --program-suffix=-fast
endif
.PHONY: quicker-install-bin ## Install Agda compiled with -O0 without tests
# Disabling optimizations leads to *much* quicker build times.
# The performance loss is acceptable for running small tests.
quicker-install-bin: install-deps quicker-install-bin-no-deps
.PHONY: quicker-install-bin-no-deps ##
quicker-install-bin-no-deps:
ifdef HAS_STACK
@echo "===================== Installing using Stack with -O0 ===================="
time $(QUICK_STACK_INSTALL) $(STACK_INSTALL_BIN_OPTS)
$(MAKE) copy-bins-with-suffix-quicker STACK_BUILD_DIR=$(QUICK_STACK_BUILD_DIR)
else
@echo "===================== Installing using Cabal with -O0 ===================="
time $(QUICK_CABAL_INSTALL) $(CABAL_INSTALL_BIN_OPTS) --program-suffix=-quicker
endif
.PHONY: v2-type-check ## Type check the Agda source only (-fno-code) with v2-cabal.
# Takes max 40s; can be quicker than make quicker-install-bin (max 5min).
#
# Might "fail" with errors like
#
# ar: ./dist-2.6.2-no-code/build/Agda/Auto/Auto.o: No such file or directory
# ...
#
# Thus, ignore exit code.
# Also prefixing it with `time` has no effect since it formally fails.
v2-type-check:
@echo "=============== Type checking using v2 Cabal with -fno-code =============="
-$(CABAL) v2-build --project-file=cabal.project.tc --builddir=dist-no-code \
2>&1 \
| $(SED) -e '/.*dist.*build.*: No such file or directory/d' \
-e '/.*Warning: the following files would be used as linker inputs, but linking is not being done:.*/d'
# Andreas, 2022-01-30:
# According to my experiments, `make type-check-no-deps` on an
# unchanged project runs slightly faster than `make v2-type-check`.
# Thus keeping the `v1` style as the default.
.PHONY: type-check ## Type check the Agda source only (-fno-code) with v1-cabal.
# Takes max 40s; can be quicker than make quicker-install-bin (max 5min).
#
# Might "fail" with errors like
#
# ar: ./dist-2.6.2-no-code/build/Agda/Auto/Auto.o: No such file or directory
# ...
#
# Thus, ignore exit code.
# Also prefixing it with `time` has no effect since it formally fails.
type-check: install-deps type-check-no-deps
.PHONY: type-check-no-deps ##
type-check-no-deps :
@echo "=============== Type checking using v1 Cabal with -fno-code =============="
-$(CABAL) $(CABAL_BUILD_CMD) --builddir=$(BUILD_DIR)-no-code \
--ghc-options=-fno-code \
--ghc-options=-fwrite-interface \
2>&1 \
| $(SED) -e '/.*dist.*build.*: No such file or directory/d' \
-e '/.*Warning: the following files would be used as linker inputs, but linking is not being done:.*/d'
## Andreas, 2021-10-14: This does not work, agda-tests is not type-checked.
## Maybe because cabal fails with an error after type-checking the library component.
# .PHONY: type-check-with-tests ## Type check only, including tests
# type-check-with-tests :
# @echo "================= Type checking using Cabal with -fno-code ==============="
# $(CABAL) $(CABAL_CONFIGURE_CMD) $(CABAL_CONFIGURE_OPTS) --builddir=$(BUILD_DIR)-no-code
# -time $(CABAL) $(CABAL_BUILD_CMD) agda-tests --builddir=$(BUILD_DIR)-no-code \
# --ghc-options=-fno-code \
# --ghc-options=-fwrite-interface \
# 2>&1 \
# | $(SED) -e '/.*dist.*build.*: No such file or directory/d' \
# -e '/.*Warning: the following files would be used as linker inputs, but linking is not being done:.*/d'
# The default is to not include cost centres for libraries, but to
# include cost centres for Agda using -fprof-late. (The use of
# -fprof-late might lead to more informative profiles than if
# -fprof-auto had been used.)
PROFILING_DETAIL=\
--profiling-detail=none\
--ghc-options=-fprof-late
.PHONY : install-prof-bin ## Install Agda with profiling enabled
# --program-suffix is not for the executable name in
# $(BUILD_DIR)/build/, only for installing it into .cabal/bin
install-prof-bin : install-deps ensure-hash-is-correct
$(CABAL_INSTALL) -j1 \
--enable-profiling $(PROFILING_DETAIL) \
--program-suffix=-prof $(CABAL_INSTALL_OPTS)
.PHONY : install-debug ## Install Agda with debug enabled
# A separate build directory is used. The suffix "-debug" is used for the binaries.
install-debug : install-deps ensure-hash-is-correct
$(CABAL_INSTALL) --disable-library-profiling \
-fdebug --program-suffix=-debug --builddir=$(DEBUG_BUILD_DIR) \
$(CABAL_INSTALL_BIN_OPTS)
.PHONY : debug-install-quick ## Install Agda -O0 with debug enabled
debug-install-quick : install-deps
$(QUICK_CABAL_INSTALL) --disable-library-profiling \
-fdebug --program-suffix=-debug-quick --builddir=$(QUICK_DEBUG_BUILD_DIR) \
$(CABAL_INSTALL_BIN_OPTS) --ghc-options=-O0
##############################################################################
## Agda mode for Emacs
.PHONY : compile-emacs-mode ## Compile Agda's Emacs mode using Emacs.
compile-emacs-mode: install-bin
$(AGDA_MODE) compile
.PHONY : setup-emacs-mode ## Configure Agda's Emacs mode.
setup-emacs-mode : install-bin
@echo
@echo "If the agda-mode command is not found, make sure that the directory"
@echo "in which it was installed is located on your shell's search path."
@echo
$(AGDA_MODE) setup
##############################################################################
## Clean
clean_helper = if [ -d $(1) ]; then $(CABAL) $(CABAL_CLEAN_CMD) --builddir=$(1); fi;
clean : ## Clean all local builds
$(call clean_helper,$(BUILD_DIR))
$(call clean_helper,$(QUICK_BUILD_DIR))
$(STACK) clean --full
$(STACK) clean --full --work-dir=$(QUICK_STACK_BUILD_DIR)
##############################################################################
## Haddock
.PHONY : haddock ##
haddock :
$(CABAL) $(CABAL_CONFIGURE_CMD) $(CABAL_CONFIGURE_OPTS)
$(CABAL) $(CABAL_HADDOCK_CMD) --builddir=$(BUILD_DIR)
##############################################################################
## The user manual
.PHONY : user-manual-html ## Make the user manual (HTML).
user-manual-html :
@$(call decorate, "User manual (HTML)", $(MAKE) -C doc/user-manual html)
.PHONY : user-manual-pdf ## Make the user manual (PDF).
user-manual-pdf :
@$(call decorate, "User manual (PDF)", $(MAKE) -C doc/user-manual latexpdf)
cp doc/user-manual/_build/latex/Agda.pdf doc/user-manual.pdf
.PHONY: user-manual-linkcheck ##
user-manual-linkcheck :
@$(call decorate, "User manual (linkcheck)", $(MAKE) -C doc/user-manual linkcheck)
cp doc/user-manual/_build/latex/Agda.pdf doc/user-manual.pdf
##############################################################################
## Create tag files
.PHONY : tags ##
tags : have-bin-hs-tags
$(MAKE) -C $(FULL_SRC_DIR) tags
.PHONY : TAGS ##
TAGS : have-bin-hs-tags
@$(call decorate, "TAGS", \
$(MAKE) -C $(FULL_SRC_DIR) TAGS)
##############################################################################
## Standard library
.PHONY : std-lib ## Update the standard library.
std-lib :
git submodule update --init std-lib
.PHONY : up-to-date-std-lib ##
up-to-date-std-lib : std-lib
@($(MAKE) -C std-lib setup)
.PHONY : fast-forward-std-lib ##
fast-forward-std-lib :
git submodule update --init --remote std-lib
@($(MAKE) -C std-lib setup)
##############################################################################
## Cubical library
.PHONY : cubical ## Update the cubical library.
cubical :
git submodule update --init cubical
.PHONY : up-to-date-cubical ##
up-to-date-cubical : cubical
.PHONY : fast-forward-cubical ##
fast-forward-cubical :
git submodule update --init --remote cubical
##############################################################################
## Continuous Integration
.PHONY : workflows ## Build the workflow configuration in .github/workflows.
workflows :
make -C .github/workflows
##############################################################################
## Testing
.PHONY : test ## Run all test suites.
test : check-whitespace \
check-encoding \
common \
succeed \
fail \
bugs \
interaction \
examples \
std-lib-test \
cubical-test \
interactive \
latex-html-test \
api-test \
internal-tests \
benchmark-without-logs \
compiler-test \
std-lib-compiler-test \
std-lib-succeed \
std-lib-interaction \
user-manual-test \
size-solver-test
.PHONY : test-using-std-lib ## Run all tests which use the standard library.
test-using-std-lib : std-lib-test \
benchmark-without-logs \
std-lib-compiler-test \
std-lib-succeed \
std-lib-interaction
.PHONY : quicktest ## Run successful and failing tests.
quicktest : common succeed fail
.PHONY : check-encoding ## Make sure that Parser.y is ASCII. [Issue #5465]
check-encoding :
@$(call decorate, "Check that Parser.y is ASCII", \
iconv -f ASCII src/full/Agda/Syntax/Parser/Parser.y > /dev/null)
# Hint: if the encoding check fails, use
#
# pcregrep --color='auto' -n "[\x80-\xFF]" src/full/Agda/Syntax/Parser/Parser.y
#
# to find non-ASCII characters.
.PHONY : bugs ##
bugs :
@$(call decorate, "Suite of tests for bugs", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Bugs)
.PHONY : internal-tests ##
internal-tests :
@$(call decorate, "Internal test suite", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Internal )
.PHONY : fast-internal-tests ##
fast-internal-tests :
@$(call decorate, "Internal test suite (using agda-fast)", \
AGDA_BIN=$(AGDA_FAST_BIN) $(AGDA_FAST_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Internal )
.PHONY : common ##
common :
@$(call decorate, "Suite of successful tests: mini-library Common", \
$(MAKE) -C test/Common )
.PHONY : succeed ##
succeed :
@$(call decorate, "Suite of successful tests", \
echo $(shell which $(AGDA_BIN)) > test/Succeed/exec-tc/executables && \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Succeed ; \
rm test/Succeed/exec-tc/executables )
.PHONY : fail ##
fail :
@$(call decorate, "Suite of failing tests", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Fail)
.PHONY : interaction ##
interaction :
@$(call decorate, "Suite of interaction tests", \
$(MAKE) -C test/interaction)
.PHONY : interactive ##
interactive :
@$(call decorate, "Suite of interactive tests", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Interactive)
.PHONY : examples ##
examples :
@$(call decorate, "Suite of examples", \
$(MAKE) -C examples)
.PHONY : latex-html-test ## Tests the LaTeX and HTML backends.
latex-html-test :
@$(call decorate, "Suite of tests for the LaTeX and HTML backends", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/LaTeXAndHTML)
.PHONY : html-test ##
html-test :
@$(call decorate, "Suite of tests for the HTML backend", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/LaTeXAndHTML/HTML)
.PHONY : latex-test ##
latex-test :
@$(call decorate, "Suite of tests for the LaTeX backend", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/LaTeXAndHTML/LaTeX)
.PHONY : quicklatex-test ##
quicklatex-test :
@$(call decorate, "Suite of tests for the QuickLaTeX backend", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/LaTeXAndHTML/QuickLaTeX)
.PHONY : std-lib-test ##
std-lib-test :
@$(call decorate, "Standard library test", \
(cd std-lib && cabal run GenerateEverything && \
time $(AGDA_BIN) $(AGDA_OPTS) --ignore-interfaces --no-default-libraries $(PROFILEOPTS) \
-i. -isrc README.agda \
+RTS -s))
.PHONY : cubical-test ##
cubical-test :
-rm -rf cubical/_build
@$(call decorate, "Cubical library test", \
time $(MAKE) -C cubical \
AGDA_BIN=$(AGDA_BIN) RTS_OPTIONS=$(AGDA_OPTS))
.PHONY : continue-cubical-test ##
continue-cubical-test :
@$(call decorate, "Continuing cubical library test", \
time $(MAKE) -C cubical \
AGDA_BIN=$(AGDA_BIN) RTS_OPTIONS=$(AGDA_OPTS))
.PHONY : continue-std-lib-test ##
continue-std-lib-test :
@(cd std-lib && \
time $(AGDA_BIN) $(PROFILEOPTS) --no-default-libraries -i. -isrc README.agda +RTS -s)
.PHONY : cubical-succeed ##
cubical-succeed :
@$(call decorate, "Successful tests using the cubical library", \
find test/CubicalSucceed -type f -name '*.agdai' -delete ; \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/CubicalSucceed)
.PHONY : std-lib-succeed ##
std-lib-succeed :
@$(call decorate, "Successful tests using the standard library", \
find test/LibSucceed -type f -name '*.agdai' -delete ; \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/LibSucceed)
.PHONY : std-lib-interaction ##
std-lib-interaction :
@$(call decorate, "Interaction tests using the standard library", \
$(MAKE) -C test/lib-interaction)
.PHONY : compiler-test ##
compiler-test :
@$(call decorate, "Compiler tests", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Compiler --regex-exclude AllStdLib)
.PHONY : ghc-compiler-test ##
ghc-compiler-test :
@$(call decorate, "GHC Compiler tests", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Compiler/MAlonzo_Lazy --regex-exclude AllStdLib)
.PHONY : js-compiler-test ##
js-compiler-test :
@$(call decorate, "JS Compiler tests", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/Compiler/JS_MinifiedOptimized --regex-exclude AllStdLib)
.PHONY : std-lib-compiler-test ##
std-lib-compiler-test :
@$(call decorate, "Standard library compiler tests", \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include AllStdLib)
.PHONY : api-test ##
api-test :
@$(call decorate, "Successful tests using Agda as a Haskell library", \
$(MAKE) -C test/api clean; $(MAKE) -C test/api)
.PHONY : benchmark ##
benchmark :
@$(call decorate, "Benchmark suite", \
$(MAKE) -C benchmark)
.PHONY : benchmark-without-logs ##
benchmark-without-logs :
@$(call decorate, "Benchmark suite without creating logs", \
$(MAKE) -C benchmark without-creating-logs)
.PHONY : benchmark-summary ##
benchmark-summary :
@$(call decorate, "Benchmark summary", \
$(MAKE) -C benchmark summary)
.PHONY : user-manual-test ##
user-manual-test :
@$(call decorate, "User manual (test)", \
find doc/user-manual -type f -name '*.agdai' -delete; \
AGDA_BIN=$(AGDA_BIN) $(AGDA_TESTS_BIN) $(AGDA_TESTS_OPTIONS) --regex-include all/UserManual)
.PHONY : testing-emacs-mode ##
testing-emacs-mode:
@$(call decorate, "Testing the Emacs mode", \
$(AGDA_MODE) compile)
##############################################################################
## Size solver
# NB. It is necessary to install the Agda library (i.e run `make install-bin`)
# before installing the `size-solver` program.
.PHONY : install-size-solver ## Install the size solver.
install-size-solver :
@$(call decorate, "Installing the size-solver program", \
$(MAKE) -C src/size-solver STACK_INSTALL_OPTS='$(SLOW_STACK_INSTALL_OPTS) $(STACK_INSTALL_OPTS)' CABAL_INSTALL_OPTS='$(SLOW_CABAL_INSTALL_OPTS) $(CABAL_INSTALL_OPTS)' install-bin)
.PHONY : size-solver-test ##
size-solver-test : install-size-solver
@$(call decorate, "Testing the size-solver program", \
$(MAKE) -C src/size-solver test)
##############################################################################
## Development
## Setting the `stack.yaml` file ############################################
# The variable `GHC_COMPILER` is to be defined as a command-line argument.
# For example: `make set-default-stack-file GHC_COMPILER=8.10.2`
set-default-stack-file : remove-default-stack-file ##
ln -s stack-$(GHC_COMPILER).yaml stack.yaml
remove-default-stack-file : ##
rm -f stack.yaml
# Installing binaries for developer services
.PHONY : have-bin-%
have-bin-% :
@($* --help > /dev/null) || $(CABAL) $(CABAL_INSTALL_CMD) $*
## Whitespace-related #######################################################
# Agda can fail to compile on Windows if files which are CPP-processed
# don't end with a newline character (because we use -Werror).
FIXW_BIN = fix-whitespace
.PHONY : fix-whitespace ## Fix the whitespace issue.
fix-whitespace : have-bin-$(FIXW_BIN)
$(FIXW_BIN)
.PHONY : check-whitespace ## Check the whitespace issue without fixing it.
check-whitespace : have-bin-$(FIXW_BIN)
$(FIXW_BIN) --check
## agda-bisect standalone program ############################################
.PHONY : install-agda-bisect ## Install agda-bisect.
install-agda-bisect :
@$(call decorate, "Installing the agda-bisect program", \
cd src/agda-bisect && $(CABAL) $(CABAL_INSTALL_CMD))
## HPC #######################################################################
.PHONY: hpc-build ##
hpc-build: ensure-hash-is-correct
$(CABAL) $(CABAL_CLEAN_CMD) $(CABAL_OPTS)
$(CABAL) $(CABAL_CONFIGURE_CMD) --enable-library-coverage $(CABAL_INSTALL_OPTS)
$(CABAL) $(CABAL_BUILD_CMD) $(CABAL_OPTS)
agda.tix: ./examples/agda.tix ./test/common/agda.tix ./test/Succeed/agda.tix ./test/compiler/agda.tix ./test/api/agda.tix ./test/interaction/agda.tix ./test/fail/agda.tix ./test/lib-succeed/agda.tix ./std-lib/agda.tix ##
hpc sum --output=$@ $^
.PHONY: hpc ## Generate a code coverage report
hpc: hpc-build test agda.tix
hpc report --hpcdir=$(BUILD_DIR)/hpc/mix/Agda-$(VERSION) agda.tix
hpc markup --hpcdir=$(BUILD_DIR)/hpc/mix/Agda-$(VERSION) agda --destdir=hpc-report
## Lines of Code #############################################################
agdalocfiles=$(shell find . \( \( -name '*.agda' -o -name '*.in' \) ! -name '.*' \) )
agda-loc : ## Agda files (tests) in this project
@wc $(agdalocfiles)
loc : ## Source code of Agda
$(MAKE) -C src/full loc
## Module dependency graph ###################################################
mod-dep : module-dependency-graph.pdf ## Generate a module dependency graph (PDF).
mod-dot : module-dependency-graph.dot ## Generate a module dependency graph (DOT).
module-dependency-graph.pdf : %.pdf : %.dot
dot -Tpdf $< > $@
module-dependency-graph.dot :
graphmod --no-cluster --prune-edges > $@
## HLint ####################################################################
hlint : $(BUILD_DIR)/build/autogen/cabal_macros.h ##
hlint --cpp-file=$< \
--cpp-include=$(FULL_SRC_DIR) \
--report=hlint-report.html \
$(FULL_SRC_DIR)/Agda
##############################################################################
## Auxiliary targets
help: ## Display this information.
@echo "Available targets:"
@$(SED) -n \
-e 's/^\.PHONY[[:blank:]]*:[[:blank:]]*\([[:graph:]]*[[:blank:]]*##\)/\1/p' \
-e 's/\([[:alnum:]_-]\{1,\}\)[[:blank:]]*:[[:blank:]]*[^#]*##[[:blank:]]*\([^\#]*\)$$/\1 ## \2/p' \
-e 's/^\(#\{2,\}\)$$//p' \
-e "s/^\(#\{2,\}[[:blank:]]*\)\([^#]\{1,\}\)$$/\2/p" \
Makefile | \
awk 'BEGIN {FS = "##"}; \
NF == 0 { print }; \
NF == 1 { print $$1 };\
NF == 2 { printf " \033[36m%-26s\033[0m %s\n", $$1, $$2};'
debug : ## Print debug information.
@echo "AGDA_BIN = $(AGDA_BIN)"
@echo "AGDA_BIN_SUFFIX = $(AGDA_BIN_SUFFIX)"
@echo "AGDA_TESTS_BIN = $(AGDA_TESTS_BIN)"
@echo "AGDA_TESTS_OPTIONS = $(AGDA_TESTS_OPTIONS)"
@echo "BUILD_DIR = $(BUILD_DIR)"
@echo "CABAL_BUILD_CMD = $(CABAL_BUILD_CMD)"
@echo "CABAL_CLEAN_CMD = $(CABAL_CLEAN_CMD)"
@echo "CABAL = $(CABAL)"
@echo "CABAL_CONFIGURE_CMD = $(CABAL_CONFIGURE_CMD)"
@echo "CABAL_CONFIGURE_OPTS = $(CABAL_CONFIGURE_OPTS)"
@echo "CABAL_HADDOCK_CMD = $(CABAL_HADDOCK_CMD)"
@echo "CABAL_INSTALL_CMD = $(CABAL_INSTALL_CMD)"
@echo "CABAL_INSTALL_OPTS = $(CABAL_INSTALL_OPTS)"
@echo "CABAL_OPTS = $(CABAL_OPTS)"
@echo "GHC_VER = $(GHC_VER)"
@echo "GHC_VERSION = $(GHC_VERSION)"
@echo "PARALLEL_TESTS = $(PARALLEL_TESTS)"
@echo "STACK = $(STACK)"
@echo "STACK_INSTALL_OPTS = $(STACK_INSTALL_OPTS)"
@echo "STACK_OPTS = $(STACK_OPTS)"
@echo
@echo "Run \`make -pq\` to get a detailed report."
@echo
# EOF