From: Tom Tromey Date: Thu, 16 Nov 1995 18:43:43 +0000 (+0000) Subject: (all): Separated out due to AIX 3.2.5 bug. X-Git-Tag: Release-0-25~304 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=5b2e213f100d3b83b771fc9038cb90362a0263b7;p=automake.git (all): Separated out due to AIX 3.2.5 bug. --- diff --git a/lib/am/subdirs.am b/lib/am/subdirs.am index 5e93c899..5aaabc71 100644 --- a/lib/am/subdirs.am +++ b/lib/am/subdirs.am @@ -7,7 +7,16 @@ @SET_MAKE@ -all install install-info uninstall check info dvi id ID:: +# NOTE: "all" is separate because otherwise the AIX 3.2.5 make will +# run all of the "all", "install", "uninstall", etc targets if run +# with no arguments. Reported by luik@isa.DE (Andreas Luik). +all:: + for subdir in $(SUBDIRS); do \ + echo making $@ in $$subdir ; \ + (cd $$subdir; $(MAKE) $@); \ + done + +install install-info uninstall check info dvi id ID:: for subdir in $(SUBDIRS); do \ echo making $@ in $$subdir ; \ (cd $$subdir; $(MAKE) $@); \ diff --git a/subdirs.am b/subdirs.am index 5e93c899..5aaabc71 100644 --- a/subdirs.am +++ b/subdirs.am @@ -7,7 +7,16 @@ @SET_MAKE@ -all install install-info uninstall check info dvi id ID:: +# NOTE: "all" is separate because otherwise the AIX 3.2.5 make will +# run all of the "all", "install", "uninstall", etc targets if run +# with no arguments. Reported by luik@isa.DE (Andreas Luik). +all:: + for subdir in $(SUBDIRS); do \ + echo making $@ in $$subdir ; \ + (cd $$subdir; $(MAKE) $@); \ + done + +install install-info uninstall check info dvi id ID:: for subdir in $(SUBDIRS); do \ echo making $@ in $$subdir ; \ (cd $$subdir; $(MAKE) $@); \