phd/Makefile

47 lines
1.1 KiB
Makefile
Raw Normal View History

2019-06-03 16:37:03 +02:00
default: pdf
2019-11-26 17:05:50 +01:00
all: pdf printer screen
2019-06-03 16:37:03 +02:00
# Constants.
rootname = main
2019-06-17 17:15:12 +02:00
rootfile = src/$(rootname).tex
2019-06-03 16:37:03 +02:00
outdir = build
outfile = $(outdir)/$(rootname).pdf
# Compression with ghostscript.
compress = gs -sDEVICE=pdfwrite -dPDFSETTINGS=/$(1) -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=$(outdir)/$(rootname)-$(1).pdf $(outfile)
# Latex command to build pdf file.
2019-06-17 17:15:12 +02:00
latexmk = TEXINPUTS=.:./tlsflyleaf/:./src/: latexmk -lualatex -f -latexoption=-shell-escape -interaction=nonstopmode $< -outdir=$(outdir) $(1) $(rootfile)
2019-06-03 16:37:03 +02:00
# Build PDF version adapted to printers.
printer: pdf
$(call compress,printer)
# Build PDF version adapted to screens.
screen: pdf
$(call compress,screen)
# Build PDF version of the thesis manuscript.
pdf: $(rootfile)
$(call latexmk)
# Watch and automatically recompile when a file changes.
watch: $(rootfile)
$(call latexmk,-pvc -view=none)
# Remove intermediate build artifacts.
clean:
latexmk -c -outdir=$(outdir) $(rootfile)
# Remove all build artifacts.
clean-all:
rm -rf $(outdir)
# Phony targets will always trigger a re-run.
.PHONY: clean-all clean watch pdf
2019-10-10 12:03:42 +02:00
# Checks sizes of abstracts
check:
./scripts/check.sh