I can do a quick compile with 'make once' and a full compile with 'make full’. And if I compile a separate chapter file it ends up being compiled differently from compiling a full book (e.g. the endnotes and bibliography end up at the end of the chapter) so I can work on separate chapters.
luna:chapters gerben$ make -n c_loosely.pdf
texexec --pdf --mode=standalone c_loosely.tex
luna:chapters gerben$ make -n prd_book.pdf
make MODE="--mode=editor" ONCE="" ../products/prd_book.pdf
The latter turns into
texexec --pdf --mode=editor ../products/prd_book.tex
And the environment file has:
\startmode[standalone]
\setupfootertexts[pagenumber][{\jobname->\filename{\currentcomponent}}]
\def\maybeendnotes
{\subsubject{Notes} \placenotes[endnote] \subsubject{Bibliography}
\switchtobodyfont[9pt]
\placepublications[criterium=all]}
\appendtoks \maybeendnotes \to \everystoptext
\stopmode
So, what would be easiest for me if I know what commend to use instead of the texexec command.
G