diff options
author | Camil Staps | 2016-02-02 20:07:15 +0100 |
---|---|---|
committer | Camil Staps | 2016-02-02 20:07:15 +0100 |
commit | db72d8f29868e1bb8a7397115c04d2f2886dc931 (patch) | |
tree | 3b99a0c2ac2e141856f94320ad8185b52e79cd70 | |
parent | start task 1 (diff) |
Makefile
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..798e4e2 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +all: $(subst .tex,.pdf,$(wildcard task*.tex)) + +%.pdf: %.tex + pdflatex $< && pdflatex $< + |