[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: -I not used by @verbatiminclude?
From: |
Karl Berry |
Subject: |
Re: -I not used by @verbatiminclude? |
Date: |
Sat, 8 Jul 2006 11:30:21 -0500 |
Hi Simon,
Isn't there a better way to tell makeinfo+texi2dvi etc, via automake,
where it should search for *.texi files?
Well, one probably-too-simple thing would be to use a make variable to
factor out the common directories:
my_texinfo_includes = -I $(top_srcdir)/examples
TEXI2DVI = texi2dvi $(my_texinfo_includes)
AM_MAKEINFOFLAGS = -I $(top_builddir)/doc $(my_texinfo_includes)
I'm not sure why the -I $(top_builddir)/doc is needed, and needed only
for makeinfo? I don't set AM_MAKEINFOFLAGS myself in my Makefile.am's ...
Best,
karl