-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathMakefile
113 lines (88 loc) · 3.39 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
.PHONY : install agda repl libHtml test testHtml golden docs
usage:
@echo "usage: make <command>"
@echo
@echo "Available commands:"
@echo ""
# Code
@echo " install -- Installs agda2hs in the user's ~/.cabal/bin"
@echo " agda -- Installs Agda itself"
@echo " repl -- Starts a cabal repl"
@echo " libHtml -- generates HTML documentation for the agda2hs library"
# Formatting
@echo " format -- Formats .hs, .cabal, .nix files"
@echo " format_check -- Check formatting of .hs, .cabal, .nix files"
@echo " format_haskell -- Formats .hs files"
@echo " format_check_haskell -- Check formatting of .hs files"
@echo " format_nix -- Formats .nix files"
@echo " format_check_nix -- Check formatting of .nix files"
@echo " format_cabal -- Formats .cabal files"
@echo " format_check_cabal -- Check formatting of .cabal files"
@echo " lint -- Auto-refactors code"
@echo " lint_check -- Run code linting"
@echo ""
# Documentation (haskell)
install :
cabal install --overwrite-policy=always
agda :
cabal install Agda --program-suffix=-erased --overwrite-policy=always
repl :
cabal repl # e.g. `:set args -itest -otest/build test/AllTests.agda ... main ... :r ... main`
libHtml :
cabal run agda2hs -- --html lib/Haskell/Prelude.agda
cp html/Haskell.Prelude.html html/index.html
FILES = $(shell find src -type f)
test/agda2hs : $(FILES)
cabal install agda2hs --overwrite-policy=always --installdir=test --install-method=copy
test : test/agda2hs
make -C test
testHtml : test/agda2hs
make -C test html
golden :
make -C test golden
docs :
make -C docs html
################################################################################
# Fromatting and linting
FIND_EXCLUDE_PATH := -not -path './dist-*/*'
FIND_HASKELL_SOURCES := find -name '*.hs' $(FIND_EXCLUDE_PATH)
FIND_NIX_SOURCES := find -name '*.nix' $(FIND_EXCLUDE_PATH)
FIND_CABAL_SOURCES := find -name '*.cabal' $(FIND_EXCLUDE_PATH)
# Runs as command on all results of the `find` call at one.
# e.g.
# foo found_file_1 found_file_2
find_exec_all_fn = $(1) -exec $(2) {} +
# Runs a command on all results of the `find` call one-by-one
# e.g.
# foo found_file_1
# foo found_file_2
find_exec_one_by_one_fn = $(1) | xargs -i $(2) {}
.PHONY: format
format: format_haskell format_nix format_cabal
format_check : format_check_haskell format_check_nix format_check_cabal
# Run stylish-haskell of .hs files
.PHONY: format_haskell
format_haskell:
$(call find_exec_all_fn, $(FIND_HASKELL_SOURCES), fourmolu -c -m inplace)
# Run nixpkgs-fmt of .nix files
.PHONY: format_nix
format_nix:
$(call find_exec_all_fn, $(FIND_NIX_SOURCES), nixpkgs-fmt)
.PHONY: format_check_nix
format_check_nix:
$(call find_exec_all_fn, $(FIND_NIX_SOURCES), nixpkgs-fmt --check)
# Run cabal-fmt of .cabal files
.PHONY: format_cabal
format_cabal:
$(call find_exec_all_fn, $(FIND_CABAL_SOURCES), cabal-fmt -i)
.PHONY: format_check_cabal
format_check_cabal:
$(call find_exec_all_fn, $(FIND_CABAL_SOURCES), cabal-fmt --check)
# Apply hlint suggestions
.PHONY: lint
lint:
$(call find_exec_one_by_one_fn, $(FIND_HASKELL_SOURCES), hlint -j --refactor --refactor-options="-i")
# Check hlint suggestions
.PHONY: lint_check
lint_check:
$(call find_exec_all_fn, $(FIND_HASKELL_SOURCES), hlint -j)