-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (17 loc) · 807 Bytes
/
Makefile
File metadata and controls
25 lines (17 loc) · 807 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
all: hws dops
hws: hw1 hw2 hw3
dops: dop1 dop2 dop3
hw1:
pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf --shell-escape fp-hw-01.tex
hw2:
pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf --shell-escape fp-hw-02.tex
hw3:
pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf --shell-escape fp-hw-03.tex
dop1:
pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf --shell-escape fp-dop-01.tex
dop2:
pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf --shell-escape fp-dop-02.tex
dop3:
pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf --shell-escape fp-dop-03.tex
clean:
rm -f *.aux *.log *.out *.pdf *.synctex.gz