-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
25 lines (18 loc) · 825 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Makefile for Inaugural lecture
clean_intermediate:
rm -rf *.idx *.ilg *.ind *.log *.out *.toc *.aux
clean: clean_intermediate
rm -rf *.pdf
all: inaugural-handout inaugural-embed-handout inaugural-embed clean_intermediate
inaugural-handout:
pdflatex "\PassOptionsToClass{handout}{beamer} \input{inaugural}"
pdflatex "\PassOptionsToClass{handout}{beamer} \input{inaugural}"
cp inaugural.pdf inaugural-handout.pdf
inaugural-embed-handout:
pdflatex "\PassOptionsToClass{handout}{beamer} \def\embedvideos{1} \input{inaugural}"
pdflatex "\PassOptionsToClass{handout}{beamer} \def\embedvideos{1} \input{inaugural}"
cp inaugural.pdf inaugural-embed-handout.pdf
inaugural-embed:
pdflatex "\def\embedvideos{1} \input{inaugural}"
pdflatex "\def\embedvideos{1} \input{inaugural}"
cp inaugural.pdf inaugural-embed.pdf