-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
26 lines (19 loc) · 811 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
25
26
SHELL = /bin/sh
LATEXMK = latexmk
FLAGS = -xelatex
all: tristia iambi carmina propertius
tristia: tristia-titlepage.tex tristia-introduction.tex tristia-text.tex \
tristia-commentary.tex tristia.bib
$(LATEXMK) $(FLAGS) tristia-main.tex -jobname=tristia
epode: epode-main.tex epode-titlepage.tex epode-introduction.tex \
epode-text.tex epode-commentary.tex horace.bib
$(LATEXMK) $(FLAGS) epode-main.tex -jobname=epode-13
ode: ode-main.tex ode-titlepage.tex ode-introduction.tex \
ode-text.tex ode-commentary.tex horace.bib
$(LATEXMK) $(FLAGS) ode-main.tex -jobname=ode
propertius: propertius-titlepage.tex propertius-introduction.tex \
propertius-text.tex propertius-commentary.tex propertius.bib
$(LATEXMK) $(FLAGS) propertius-main.tex -jobname=propertius
clean:
- $(RM) build/*
.PHONY : clean