-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
78 lines (56 loc) · 1.71 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
.PHONY: build build-example build-fast clean dump-splices dump-th example-client example-docs example-server ghci haddock haddock-server lint test test-fast upload watch watch-example watch-haddock watch-test
all: build
build:
stack build
build-fast:
stack build --fast
build-example:
stack build --flag servant-checked-exceptions:buildexample
clean:
stack clean
# dump the template haskell
dump-splices: dump-th
dump-th: test/test-dir/empty-dir
-stack build --ghc-options="-ddump-splices"
@echo
@echo "Splice files:"
@echo
@find "$$(stack path --dist-dir)" -name "*.dump-splices" | sort
example-client: build-example
stack exec -- servant-checked-exceptions-example-client --strict Hello
example-docs: build-example
stack exec -- servant-checked-exceptions-example-docs
example-server: build-example
stack exec -- servant-checked-exceptions-example-server
haddock:
stack build --haddock
# Run ghci using stack.
ghci:
stack ghci
test/test-dir/empty-dir:
mkdir -p test/test-dir/empty-dir
test: test/test-dir/empty-dir
stack test
test-fast: test/test-dir/empty-dir
stack test --fast
# Run hlint.
lint:
hlint src/
# This runs a small python websever on port 8001 serving up haddocks for
# packages you have installed.
#
# In order to run this, you need to have run `make build-haddock`.
haddock-server:
cd "$$(stack path --local-doc-root)" && python -m http.server 8001
# Upload this package to hackage.
upload:
stack upload .
# Watch for changes.
watch:
stack build --file-watch --fast .
watch-example:
stack build --file-watch --fast --flag servant-checked-exceptions:buildexample .
watch-haddock:
stack build --haddock --file-watch --fast .
watch-test: test/test-dir/empty-dir
stack test --file-watch --fast .