nixcon2024/Makefile

18 lines
300 B
Makefile
Raw Permalink Normal View History

2024-10-23 22:58:25 +02:00
OUT_DIR ?= ../out/
AUX_DIR ?= ../aux/
TOP_LIB ?= ../latex/mk/
PROJECTS := tex
DEPS_EXTS := tex png pdf
EXTRA_LATEXMK_ARGS=-pdfxelatex="xelatex --shell-escape %O %S"
.PHONY: all
all: $(PROJECTS)
clean:
rm -r out aux
include $(TOP_LIB)/build_project.mk
$(eval $(call build_projects,$(PROJECTS)))