diff options
author | Nao Pross <naopross@thearcway.org> | 2018-02-25 23:22:37 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-02-25 23:22:37 +0100 |
commit | 9c0122fb85f6157c342856c9095e7af1723f602c (patch) | |
tree | d782b1bea08c90c306d618ff94beb8826640882a /doc/makefile | |
parent | No time for commit msg (diff) | |
download | Xilofono-9c0122fb85f6157c342856c9095e7af1723f602c.tar.gz Xilofono-9c0122fb85f6157c342856c9095e7af1723f602c.zip |
Typeset journal in LaTeX
Diffstat (limited to 'doc/makefile')
-rw-r--r-- | doc/makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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 |