diff options
author | Daniel Schadt <kingdread@gmx.de> | 2019-07-10 02:53:32 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2019-07-10 02:53:32 +0200 |
commit | c9d759ba849f1160542957082b3a87d9a8927e2d (patch) | |
tree | 21fc0b4b46e306ed468696ea14cb3b19b05403ed /blocking | |
parent | d8dbb658d96c58a0c81762281cc0fc04577f498e (diff) | |
download | open-tt-guides-c9d759ba849f1160542957082b3a87d9a8927e2d.tar.gz open-tt-guides-c9d759ba849f1160542957082b3a87d9a8927e2d.tar.bz2 open-tt-guides-c9d759ba849f1160542957082b3a87d9a8927e2d.zip |
makefile: put all as default target
Diffstat (limited to 'blocking')
-rw-r--r-- | blocking/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/blocking/Makefile b/blocking/Makefile index e13482b..da7326f 100644 --- a/blocking/Makefile +++ b/blocking/Makefile @@ -1,3 +1,5 @@ +all: pdf html + pdf: mkdir -p build pdflatex -output-directory build blocking.tex @@ -10,6 +12,5 @@ html: cat custom.css >> html/blocking.css 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 |