diff options
author | Camil Staps | 2016-08-30 17:28:34 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-30 17:28:34 +0200 |
commit | f36cad7c93abe7b6864ecd886a8f38d9b9def3cd (patch) | |
tree | ce4d4334aa633a13a0947b513ecc7ee55d0a2c08 /Makefile |
Initial commit
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 |