I'm trying to create an exec on mac to compile Latex, MakeIndex and BibTex in same time.
Here my make file :
latex -output-directory=build -interaction=nonstopmode sample.tex
makeindex build/sample.idx
makeindex build/sample.nlo -s nomencl.ist -o build/sample.nls
latex -output-directory=build -interaction=nonstopmode sample.tex
bibtex build/sample
latex -output-directory=build -interaction=nonstopmode sample.tex
latex -output-directory=build -interaction=nonstopmode sample.tex
But when I launch this exec with this in my sample folder, Terminal return me "Command not found".
I think this is a path problem but I'm not really efficient in this domain...
latexmk? – Alan Munn Aug 17 '13 at 13:05ararapackage; see http://www.ctan.org/tex-archive/support/arara/doc for information on how to get started witharara. – Mico Aug 17 '13 at 13:06latexmk, but I prefer generalize the compilation, forxelatexfor instance.This make file run wthout problem on Ubuntu
– user35244 Aug 17 '13 at 13:35makefile, can you post the whole thing, and the output ofls -Alfrom its directory? – Sean Allred Aug 17 '13 at 15:12