summaryrefslogtreecommitdiffhomepage
path: root/colloq/Makefile
blob: ee5b6497bf2aed0e9bf61cefe19016fdcd7a0dda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CC = xelatex
BIB = biber
VIEW = zathura

all:
	@mkdir -p build/
	@$(CC) --output-directory=build/ --shell-escape main

full: clean
	@mkdir -p build/
	@$(CC) --output-directory=build/ --shell-escape main
	@$(BIB) --input-directory=build/ main
	@$(CC) --output-directory=build/ --shell-escape main

clean:
	@$(RM) -rf build

run: clean all
	@$(VIEW) build/main.pdf