aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 2e5a12e..e67881e 100644
--- a/makefile
+++ b/makefile
@@ -4,7 +4,7 @@ findopts := $(foreach ext,$(exts),-or -iname "*.$(ext)")
4all: pdf 4all: pdf
5 5
6pdf: clean 6pdf: clean
7 find ./* -type f | grep -v '/_.*.tex' | grep 'tex$$' > texfiles 7 find ./* -type f | grep -v '/_.*.tex' | grep -v 'sandbox' | grep 'tex$$' > texfiles
8 while read l ; do \ 8 while read l ; do \
9 latexmk -quiet -cd -lualatex -e '$$lualatex=q/lualatex %O --shell-escape %S/' $$l ; \ 9 latexmk -quiet -cd -lualatex -e '$$lualatex=q/lualatex %O --shell-escape %S/' $$l ; \
10 done < texfiles 10 done < texfiles