123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739 |
- # Top-level Makefile for Agda 2
- # Authors: Ulf Norell, Nils Anders Danielsson, Francesco Mazzoli, Liang-Ting Chen
- # Profiling verbosity for std-lib-test
- PROFVERB=7
- # 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 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 $(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'
- .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-library-profiling --enable-profiling \
- --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 : 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 -v profile:$(PROFVERB) \
- -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_EXEC=$(AGDA_BIN) RTS_OPTIONS=$(AGDA_OPTS))
- .PHONY : continue-std-lib-test ##
- continue-std-lib-test :
- @(cd std-lib && \
- time $(AGDA_BIN) -v profile:$(PROFVERB) --no-default-libraries -i. -isrc README.agda +RTS -s)
- .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
- cd $(FIXW_PATH) && ln -s stack-$(GHC_COMPILER).yaml stack.yaml
- remove-default-stack-file : ##
- rm -f stack.yaml
- cd $(FIXW_PATH) && 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
- @echo "Run \`make -pq\` to get a detailed report."
- @echo
- # EOF
|