public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
From: Jeff Johnston <jjohnstn@redhat.com>
To: Sebastian Huber <sebastian.huber@embedded-brains.de>
Cc: Newlib <newlib@sourceware.org>
Subject: Re: [PATCH] newlib: Regenerate Makefile.in
Date: Fri, 13 May 2022 16:05:29 -0400	[thread overview]
Message-ID: <CAOox84sgjWSi4yge7t=2y8rOwvVJ7vShdeVWVE-ECTeZjdRHHg@mail.gmail.com> (raw)
In-Reply-To: <20220513121341.101218-1-sebastian.huber@embedded-brains.de>

Feel free to commit.

-- Jeff J.

On Fri, May 13, 2022 at 8:14 AM Sebastian Huber <
sebastian.huber@embedded-brains.de> wrote:

> Regenerate Makefile.in to include changes in Makefile.am of commit
> 81b7cf09faa523e7bb438abe24e6e5376e45a0e5.
> ---
>  newlib/Makefile.in | 36 ++++++++++++++++++------------------
>  1 file changed, 18 insertions(+), 18 deletions(-)
>
> diff --git a/newlib/Makefile.in b/newlib/Makefile.in
> index 4ea83f09f..ad81c4fd7 100644
> --- a/newlib/Makefile.in
> +++ b/newlib/Makefile.in
> @@ -3693,9 +3693,9 @@ ACLOCAL_AMFLAGS = -I . -I .. -I ../config
>  CLEANFILES = libg.a $(MATHOBJS_IN_LIBC) stmp-targ-include \
>         libc/targetdep.tex libc/targetdep.tex.stamp \
>         $(LIBC_CHEWOUT_FILES) $(LIBC_DOCBOOK_OUT_FILES) libc/*.xml \
> -       libc/*.xml.stamp libc/*.3 libm/targetdep.tex \
> +       libc_man.stamp libc/*.3 libm/targetdep.tex \
>         libm/targetdep.tex.stamp $(LIBM_CHEWOUT_FILES) \
> -       $(LIBM_DOCBOOK_OUT_FILES) libm/*.xml libm/*.xml.stamp libm/*.3
> +       $(LIBM_DOCBOOK_OUT_FILES) libm/*.xml libm_man.stamp libm/*.3
>  EXTRA_DIST = $(am__append_40)
>  PHONY = $(am__append_4)
>  SUFFIXES = $(am__append_5)
> @@ -3982,6 +3982,8 @@ RUNTESTFLAGS =
>  # https://bugs.gnu.org/23599
>  TEXI2DVI = texi2dvi -E
>  TEXINFO_TEX = ../texinfo/texinfo.tex
> +XMLTO_MAN_QUIET_ = --stringparam man.output.quietly=1
> +XMLTO_MAN_QUIET = $(XMLTO_MAN_QUIET_$(V))
>  @HAVE_DOC_TRUE@MKDOC = doc/makedoc$(EXEEXT_FOR_BUILD)
>  @HAVE_DOC_TRUE@CHEW = $(MKDOC) -f $(srcdir)/doc/doc.str
>  @HAVE_DOC_TRUE@DOCBOOK_CHEW = ${top_srcdir}/doc/makedocbook.py
> @@ -47049,21 +47051,20 @@ libc/targetdep.tex.stamp: $(LIBC_CHAPTERS)
>         $(AM_V_at)touch $@
>  libc/targetdep.tex: libc/targetdep.tex.stamp; @true
>
> -libc/libc.xml.stamp: libc/libc.in.xml $(LIBC_CHAPTERS)
> $(LIBC_DOCBOOK_OUT_FILES)
> +libc/libc.xml: libc/libc.in.xml $(LIBC_CHAPTERS) $(LIBC_DOCBOOK_OUT_FILES)
>         $(AM_V_at)\
>         for chapter in $(LIBC_CHAPTERS); do \
>           $(TEXI2DOCBOOK) < $(srcdir)/$$chapter > libc/`basename
> $${chapter%.tex}`.xml || exit 1; \
>         done
>         $(AM_V_GEN)xsltproc --xinclude --path $(builddir)/libc --nonet
> $(srcdir)/refcontainers.xslt $< > $@.tmp
> -       $(AM_V_at)$(SHELL) $(newlib_basedir)/../move-if-change $@.tmp
> $(@:.stamp=)
> -       $(AM_V_at)touch $@
> -libc/libc.xml: libc/libc.xml.stamp; @true
> +       $(AM_V_at)$(SHELL) $(newlib_basedir)/../move-if-change $@.tmp $@
>
> -libc_man: libc/libc.xml
> -       $(AM_V_GEN)xmlto --skip-validation -o libc --searchpath
> $(builddir)/libc man -m $(srcdir)/man.xsl libc/libc.xml
> -man: libc_man
> +libc_man.stamp: libc/libc.xml
> +       $(AM_V_GEN)xmlto --skip-validation -o libc --searchpath
> $(builddir)/libc man -m $(srcdir)/man.xsl $(XMLTO_MAN_QUIET) libc/libc.xml
> +       $(AM_V_at)touch $@
> +man: libc_man.stamp
>
> -libc_install-man: libc_man
> +libc_install-man: libc_man.stamp
>         $(MKDIR_P) $(DESTDIR)$(mandir)/man3
>         $(INSTALL_DATA) libc/*.3 $(DESTDIR)$(mandir)/man3/
>  install-man: libc_install-man
> @@ -47080,21 +47081,20 @@ libm/targetdep.tex.stamp: $(LIBM_CHAPTERS)
>         $(AM_V_at)touch $@
>  libm/targetdep.tex: libm/targetdep.tex.stamp; @true
>
> -libm/libm.xml.stamp: libm/libm.in.xml $(LIBM_CHAPTERS)
> $(LIBM_DOCBOOK_OUT_FILES)
> +libm/libm.xml: libm/libm.in.xml $(LIBM_CHAPTERS) $(LIBM_DOCBOOK_OUT_FILES)
>         $(AM_V_at)\
>         for chapter in $(LIBM_CHAPTERS); do \
>           $(TEXI2DOCBOOK) < $(srcdir)/$$chapter > libm/`basename
> $${chapter%.tex}`.xml || exit 1; \
>         done
>         $(AM_V_GEN)xsltproc --xinclude --path $(builddir)/libm --nonet
> $(srcdir)/refcontainers.xslt $< > $@.tmp
> -       $(AM_V_at)$(SHELL) $(newlib_basedir)/../move-if-change $@.tmp
> $(@:.stamp=)
> -       $(AM_V_at)touch $@
> -libm/libm.xml: libm/libm.xml.stamp; @true
> +       $(AM_V_at)$(SHELL) $(newlib_basedir)/../move-if-change $@.tmp $@
>
> -libm_man: libm/libm.xml
> -       $(AM_V_GEN)xmlto --skip-validation -o libm --searchpath
> $(builddir)/libm man -m $(srcdir)/man.xsl libm/libm.xml
> -man: libm_man
> +libm_man.stamp: libm/libm.xml
> +       $(AM_V_GEN)xmlto --skip-validation -o libm --searchpath
> $(builddir)/libm man -m $(srcdir)/man.xsl $(XMLTO_MAN_QUIET) libm/libm.xml
> +       $(AM_V_at)touch $@
> +man: libm_man.stamp
>
> -libm_install-man: libm_man
> +libm_install-man: libm_man.stamp
>         $(MKDIR_P) $(DESTDIR)$(mandir)/man3
>         $(INSTALL_DATA) libm/*.3 $(DESTDIR)$(mandir)/man3/
>  install-man: libm_install-man
> --
> 2.35.3
>
>

      reply	other threads:[~2022-05-13 20:05 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-13 12:13 Sebastian Huber
2022-05-13 20:05 ` Jeff Johnston [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAOox84sgjWSi4yge7t=2y8rOwvVJ7vShdeVWVE-ECTeZjdRHHg@mail.gmail.com' \
    --to=jjohnstn@redhat.com \
    --cc=newlib@sourceware.org \
    --cc=sebastian.huber@embedded-brains.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).