-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 765 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 765 Bytes
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
################################################################################
# Commands relating to Haskell library
################################################################################
.PHONY: build
build:
@stack build
.PHONY: test
test:
@stack test
.PHONY: haddock
haddock:
@stack haddock
.PHONY: format
format:
@ormolu --mode inplace --cabal-default-extensions $(shell git ls-files '*.hs')
.PHONY: format-check
format-check:
@ormolu --mode check --cabal-default-extensions $(shell git ls-files '*.hs')
################################################################################
# Commands relating to Haskell Symposium 2021 paper
################################################################################
include doc/doc.mk