aboutsummaryrefslogtreecommitdiff
path: root/Practical2/report/Makefile
blob: 6f88cefada661c0a91d71fc9457d8cb0cbba2ac1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TEX=pdflatex
OBJS=report.pdf report-print.pdf

all:
	latexmk -pdf -pdflatex="pdflatex -shell-escape" report.tex
	pdflatex -shell-escape '\input{report-print}\input{report}'
	pdflatex -shell-escape '\input{report-print}\input{report}'

clean:
	for pdf in $(OBJS); do latexmk -cd -c "$$pdf"; done

FORCE: