diff options
author | Daniel Schadt <kingdread@gmx.de> | 2019-06-29 02:27:33 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2019-06-29 02:27:33 +0200 |
commit | 25e93c0db6b2718a7de671bb38d640f1b82ecb4b (patch) | |
tree | 9f0547a1656527d7969bb802ec7f10a46564f9ab /blocking/Makefile | |
download | open-tt-guides-25e93c0db6b2718a7de671bb38d640f1b82ecb4b.tar.gz open-tt-guides-25e93c0db6b2718a7de671bb38d640f1b82ecb4b.tar.bz2 open-tt-guides-25e93c0db6b2718a7de671bb38d640f1b82ecb4b.zip |
initial commit
Diffstat (limited to 'blocking/Makefile')
-rw-r--r-- | blocking/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/blocking/Makefile b/blocking/Makefile new file mode 100644 index 0000000..a604f68 --- /dev/null +++ b/blocking/Makefile @@ -0,0 +1,14 @@ +pdf: + mkdir -p build + pdflatex -output-directory build blocking.tex + pdflatex -output-directory build blocking.tex + +html: + mkdir -p html + make4ht -d html blocking.tex + make4ht -d html blocking.tex + rm blocking.4ct blocking.4tc blocking.aux blocking.dvi blocking.idv blocking.lg blocking.log blocking.tmp blocking.xref blocking.css blocking.html + +all: pdf html + +.PHONY: all pdf html |