diff options
author | Camil Staps | 2016-04-21 20:15:28 +0200 |
---|---|---|
committer | Camil Staps | 2016-04-21 20:15:28 +0200 |
commit | 8b5ae41bdfe58e6f2d68856eb6bf4e9d89cf970e (patch) | |
tree | 34a2594d21e6786ebaa6ab238df31caf44927f37 /Makefile | |
parent | Removed stuff (diff) |
Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e13cc58 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +TARGET=$(subst .tex,.pdf,$(wildcard */*.tex)) + +all: $(TARGET) + +%.pdf : %.tex + cd `dirname $<` && pdflatex -shell-escape `basename $<` && pdflatex -shell-escape `basename $<` && cd .. + |