With this Makefile.am:

----------------------------------------------------------------------
AUTOMAKE_OPTIONS = foreign
noinst_TEXINFOS = foo.texinfo
----------------------------------------------------------------------

and this configure.ac:

----------------------------------------------------------------------
AC_INIT(amtest, 1.0, [EMAIL PROTECTED])
AM_INIT_AUTOMAKE
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
----------------------------------------------------------------------

and this foo.texinfo:

----------------------------------------------------------------------
@setfilename foo.info
----------------------------------------------------------------------

the generated Makefile.in will not build foo.info, either with
"make" or "make foo.info".  However, if I change
"noinst_TEXINFOS" to "info_TEXINFOS", foo.info is built as
expected.

Is noinst_TEXINFOS unsupported?  The manual says nothing about it
as far as I can tell.  I see a 5-year-old patch that would have
added support for noinst_TEXINFOS:
        http://thread.gmane.org/gmane.comp.sysutils.automake.patches/191
It appears to have never been applied.
-- 
Ben Pfaff 
http://benpfaff.org


Reply via email to