summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2016-02-12 14:57:35 +0100
committerCamil Staps2016-02-12 14:57:35 +0100
commit359e43265afb3075a6c862aee2d8d22084ef758a (patch)
treec4cda347ca2e904d9c3bad3e68308f00d1c0f2f0
parentPut everything on git (diff)
Makefile
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..97582f6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+TARGET=$(subst .tex,.pdf,$(wildcard */*.tex))
+
+all: $(TARGET)
+
+%.pdf : %.tex
+ pdflatex -shell-escape $< && pdflatex -shell-escape $<
+