-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Makefile
69 lines (54 loc) · 1.41 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
.PHONY: bench benchmark build build-haddock clean dump-splices dump-th example example-json example-profile ghci haddock haddock-server lint repl test upload watch watch-tests watch-test
all: build
bench: benchmark
benchmark:
stack bench
build:
stack build
clean:
stack clean
# dump the template haskell
dump-splices: dump-th
dump-th:
-stack build --ghc-options="-ddump-splices"
@echo
@echo "Splice files:"
@echo
@find "$$(stack path --dist-dir)" -name "*.dump-splices" | sort
example:
stack build --flag pretty-simple:buildexample
stack exec pretty-simple-example
example-json:
stack build --flag pretty-simple:buildexample
stack exec pretty-simple-json-example
example-profile:
stack build --flag pretty-simple:buildexample --profile
stack exec pretty-simple-example -- +RTS -p
haddock: build-haddock
build-haddock:
stack build --haddock
# Watch for changes.
watch:
stack build --file-watch --fast .
# Watch for changes.
watch-test: watch-tests
watch-tests:
stack test --file-watch --fast .
# Run ghci using stack.
repl: ghci
ghci:
stack ghci
test:
stack test
# 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 .