summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2016-02-16 17:01:20 +0100
committerCamil Staps2016-02-16 17:01:20 +0100
commitad3e24aa08cce931368f313bbea42496f2a611c2 (patch)
treec130f11a570e388841ca6ca0ebe973d78a5d336d
parenttask 1 (diff)
finish task 1
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bfc5394
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+TARGET=$(subst .tex,.pdf,$(wildcard assignment*.tex))
+
+all: $(TARGET)
+
+%.pdf: %.tex
+ latexmk -pdf $<