summaryrefslogtreecommitdiff
path: root/Makefile
blob: 91a6bfb7ec03acaf82875a713d37f4fa9788f088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: test lib

.PHONY: lib
lib:
	stack build
	time stack exec zf -- --log library/everything.tex -t 15 --uncached

.PHONY: dump
dump:
	stack build
	time stack exec zf -- --log library/everything.tex -t 15 --uncached --dump dump

.PHONY: build
build:
	stack build

.PHONY: test
test:
	stack test --test-arguments "--accept"