Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-07-16 19:30:32 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-07-16 19:30:32 +0400
commit778876f6ce542fd3d6611d30ac474c9b26e15fa7 (patch)
treeb65e4573ac3c938386970f28cc65d7cd72374125 /newlib/libc/Makefile.am
parentdf2bb2a531208d64be1ec80342e02290afdb6d46 (diff)
2002-07-16 Jeff Johnston <jjohnstn@redhat.com>
* libc/Makefile.am (stmp-extra): New target to set makeinfo flag if LIBC_EXTRA_LIB is present. * libc/Makefile.in: Regenerated. * libc/libc.texinfo: Add blank line. * libc/argz/Makefile.am: Add doc support. * libc/search/Makefile.am: Ditto. * libc/argz/Makefile.in: Regenerated. * libc/search/Makefile.in: Ditto. * libc/misc/misc.tex: Add ffs function. * libc/stdio/ftell.c: Fix missing doc delimeter in description.
Diffstat (limited to 'newlib/libc/Makefile.am')
-rw-r--r--newlib/libc/Makefile.am13
1 files changed, 12 insertions, 1 deletions
diff --git a/newlib/libc/Makefile.am b/newlib/libc/Makefile.am
index 7a22c0269..7e8bdba1d 100644
--- a/newlib/libc/Makefile.am
+++ b/newlib/libc/Makefile.am
@@ -114,7 +114,7 @@ SUBDEFS = \
$(LIBC_EXTRA_DEF) \
misc/stmp-def
-libc.info: sigset.texi targetdep.tex $(SUBDEFS)
+libc.info: sigset.texi extra.texi targetdep.tex $(SUBDEFS)
stmp-sigset: config.status
if test -n "$(LIBC_SIGNAL_LIB)"; then \
@@ -127,6 +127,17 @@ stmp-sigset: config.status
sigset.texi: stmp-sigset ; @true
+stmp-extra: config.status
+ if test -n "$(LIBC_EXTRA_LIB)"; then \
+ echo "@set EXTRA" >tmp.texi; \
+ else \
+ echo "@clear EXTRA" >tmp.texi; \
+ fi
+ $(SHELL) $(newlib_basedir)/../move-if-change tmp.texi extra.texi
+ touch $@
+
+extra.texi: stmp-extra ; @true
+
stmp-targetdep: force
rm -f tmp.texi
targetdoc=`pwd`/tmp.texi; \