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:
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r--newlib/Makefile.am15
1 files changed, 15 insertions, 0 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am
index 200bc61bd..ee580075e 100644
--- a/newlib/Makefile.am
+++ b/newlib/Makefile.am
@@ -362,6 +362,21 @@ dvi-recursive: doc/makedoc
doc/makedoc:
cd doc && $(MAKE) all
+# Recursive targets for man and install-man
+man:
+ for d in $(SUBDIRS); do \
+ if test "$$d" != "."; then \
+ (cd $$d && $(MAKE) man) || exit 1; \
+ fi; \
+ done
+
+install-man:
+ for d in $(SUBDIRS); do \
+ if test "$$d" != "."; then \
+ (cd $$d && $(MAKE) install-man) || exit 1; \
+ fi; \
+ done
+
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
# Multilib support.