aboutsummaryrefslogtreecommitdiffhomepage
path: root/exams/mathe1/hauptklausur/makefile
blob: 4c73ad29d7e6aa454dee1ad47636a4339f0914b1 (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/ main

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

clean:
	@$(RM) -rf build

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