diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ findopts := $(foreach ext,$(exts),-or -iname "*.$(ext)") | |||
4 | all: pdf | 4 | all: pdf |
5 | 5 | ||
6 | pdf: clean | 6 | pdf: 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 |