This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

28 lines
404 B
Makefile

TARGETS = dekker_thesis.pdf
MAKE=make
LATEX=xelatex
BIBTEX=biber
BUILDDIR=build
.PHONY: FORCE
all: $(TARGETS)
$(BUILDDIR)/.sync:
pipenv sync
%.pdf: %.tex FORCE
pipenv run ./latexrun --latex-cmd=$(LATEX) --latex-args="-shell-escape" --bibtex-cmd=$(BIBTEX) -O $(BUILDDIR) $<
update:
pipenv lock
rm -f $(BUILDDIR)/.sync
clean:
./latexrun --clean-all
rm -f indent.log
clobber:
rm -rf build/