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.in
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.in')
-rw-r--r--newlib/libc/Makefile.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/newlib/libc/Makefile.in b/newlib/libc/Makefile.in
index 7740cac94..4b2095aca 100644
--- a/newlib/libc/Makefile.in
+++ b/newlib/libc/Makefile.in
@@ -693,7 +693,7 @@ crt0.o: sys/crt0.o
sys/crt0.o: ; @true
-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 \
@@ -706,6 +706,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; \