> Date: Tue, 23 Jun 2026 20:42:27 +0000 > From: Heime <[email protected]> > > > Am looking at Makefile.in for "Introduction to Emacs Lisp" called > eintr, to see how one would specify options for html output. > > One can get the code from https://ftp.gnu.org/gnu/emacs/ > > The makefile is found /emacs-30.2/doc/lispintro > > There is HTML_OPTS, which is set to --no-split --html > > What if the user wants to use > > --split=node --transliterate-file-names --node-files > > How would one call the makefile?
Set HTML_OPTS or MAKEINFO_OPTS from the Make's comand line: make ... HTML_OPTS='--foo --bar --baz'
