blob: 48593ca736a4524c0264a91a0445d93269b4c435 (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# LaTeX basic Makefile
#
# WTFPL, 2016 - 2018 Agathe Porte (MicroJoe) <microjoe@microjoe.org>
#
# Inspirated from
# http://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project
# and my basic Makefile skills.
# Very important variables to set up
PDF=main.pdf
PRINC=src/main.tex
# You want latexmk to *always* run, because make does not have all the info.
# Also, include non-file targets in .PHONY so they are run regardless of any
# file of the given name existing.
.PHONY: $(PDF) all clean
# Main rule: Construct the PDF
all: $(PDF)
#
# Live: automatic watch and build of the PDF file
live: $(PRINC) $(SOURCES)
source ~/.bashrc && latexmk -pvc -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PRINC)
# Construct the PDF file from sources
$(PDF): $(PRINC) $(SOURCES)
source ~/.bashrc && latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PRINC)
# Remove all the intermediate files
clean:
@echo Cleaning temporary LaTeX files...
@rm -f \
*.aux \
*.fdb_latexmk \
*.fls \
*.glg \
*.glo \
*.gls \
*.glsdefs \
*.ist \
*.lof \
*.log \
*.lot \
*.out \
*.toc \
*.xdy
@echo Done
mrproper: clean
@echo Removing all PDF files...
@rm -f *.pdf
@echo Removing all DVI files...
@rm -f *.dvi
@echo Done
|