Subject: need help w/ doc/info/Makefile.am & maxima.texi
From: Ed Beroset
Date: Wed, 12 Nov 2008 11:34:48 -0500 (GMT-05:00)
Robert Dodier <robert.dodier at gmail.com> wrote:
>Can someone tell me how to fix doc/info/Makefile.am so that
>maxima.info gets built? Thanks for your help.
Ah! Finally something I can actually help with. Yes, it's actually easy since automake already knows about texi. Just add this line to Makefile.am:
info_TEXINFOS=maxima.texi
and automake should do the rest. This makes it such that targets like "make pdf" will also work, for example, to create a PDF version of the file.
Ed