Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
avoid the previous commit's automake error
  • Loading branch information
cooljeanius committed Oct 22, 2023
1 parent 8e2e78b commit ae6404d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion doc/Makefile.am
Expand Up @@ -71,8 +71,9 @@ gaa.tex.html: $(TEX_OBJECTS)
touch gaa.tex.html; \
fi

info_TEXINFOS =
if BUILD_DOCS
info_TEXINFOS = gaa.texi
info_TEXINFOS += gaa.texi
EXTRA_DIST += $(info_TEXINFOS)
else
dist_info_TEXINFOS = gaa.texi
Expand Down
10 changes: 7 additions & 3 deletions doc/Makefile.in
Expand Up @@ -89,6 +89,9 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
@BUILD_DOCS_TRUE@am__append_1 = gaa.texi
@BUILD_DOCS_TRUE@am__append_2 = $(info_TEXINFOS)
@BUILD_DOCS_FALSE@am__append_3 = $(dist_info_TEXINFOS)
subdir = doc
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_gnu_make.m4 \
Expand Down Expand Up @@ -153,7 +156,7 @@ DVIS = gaa.dvi
PDFS = gaa.pdf
PSS = gaa.ps
HTMLS = gaa.html
TEXINFOS = gaa.texi
TEXINFOS = $(am__append_1)
TEXI2DVI = texi2dvi
TEXI2PDF = $(TEXI2DVI) --pdf --batch
MAKEINFOHTML = $(MAKEINFO) --html
Expand Down Expand Up @@ -346,10 +349,11 @@ top_srcdir = @top_srcdir@
want_docs = @want_docs@
want_yywrap = @want_yywrap@
EXTRA_DIST = ref.tex gaa.html/index.html gaa.ps gaa.tex img1.png \
tut.tex gaa.css $(info_TEXINFOS)
tut.tex gaa.css $(am__append_2) $(am__append_3)
dist_gaadoc_DATA = gaa.html/index.html gaa.ps img1.png gaa.css
TEX_OBJECTS = ref.tex gaa.tex tut.tex
info_TEXINFOS = gaa.texi
info_TEXINFOS = $(am__append_1)
@BUILD_DOCS_FALSE@dist_info_TEXINFOS = gaa.texi
all: all-am

.SUFFIXES:
Expand Down

0 comments on commit ae6404d

Please sign in to comment.