summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/eledmac/examples/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/eledmac/examples/makefile')
-rw-r--r--Master/texmf-dist/doc/latex/eledmac/examples/makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/latex/eledmac/examples/makefile b/Master/texmf-dist/doc/latex/eledmac/examples/makefile
index 2957ca2313a..e8b74f92797 100644
--- a/Master/texmf-dist/doc/latex/eledmac/examples/makefile
+++ b/Master/texmf-dist/doc/latex/eledmac/examples/makefile
@@ -1,11 +1,16 @@
.SUFFIXES: .tex
-all: .tex.pdf
+SRC= $(wildcard *.tex)
+OBJ= $(SRC:.tex=.pdf)
+
+all:$(OBJ)
-.tex.pdf:
- latexmk $<
+%.pdf: %.tex
+ latexmk $<
+lualatex-parallel-rtl.pdf: lualatex-parallel-rtl.tex
+ lualatex $<
clean:
- @$(RM) *pdf *toc *.1* *.2* *.3* *.eledsec* *.log *.fdb_latexmk *.aux *.end *.ilg *.ind *.idx *.out *.synctex.gz *.synctex.gz\(busy\) \ No newline at end of file
+ @$(RM) *pdf *toc *.1* *.2* *.3* *.eledsec* *.log *.fdb_latexmk *.aux *.end *.ilg *.ind *.idx *.out *.synctex.gz *.synctex.gz\(busy\)