diff options
author | Camil Staps | 2016-09-20 23:52:42 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-20 23:52:42 +0200 |
commit | 137c84c7af572e8bf4a4bbfd080182ed9f083267 (patch) | |
tree | f11208e6a0c045ed65445b97e163bdf596828b8b /Makefile | |
parent | Initial commit (diff) |
Start Benton
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0928664 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +TEX=pdflatex +TEXFLAGS=-file-line-error -halt-on-error + +TARGET=$(subst .tex,.pdf,$(wildcard *.tex)) + +.PHONY: all clean + +all: $(TARGET) + +%.pdf: %.tex + $(TEX) $(TEXFLAGS) $< &&\ + $(TEX) $(TEXFLAGS) $< + +clean: + latexmk -C |