From 9c0122fb85f6157c342856c9095e7af1723f602c Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sun, 25 Feb 2018 23:22:37 +0100 Subject: Typeset journal in LaTeX --- doc/makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 doc/makefile (limited to 'doc/makefile') diff --git a/doc/makefile b/doc/makefile new file mode 100644 index 0000000..6679a0d --- /dev/null +++ b/doc/makefile @@ -0,0 +1,17 @@ +BUILD_DIR := build +TEX := xelatex \ + -interaction=nonstopmode \ + -halt-on-error \ + -output-directory=$(BUILD_DIR) + +.PHONY: dir doc diario +all: doc diario + +doc: dir + $(TEX) xilofono.tex + +diario: dir + $(TEX) diario.tex + +dir: + mkdir -p build -- cgit v1.2.1