From: Tom Tromey Date: Mon, 20 Nov 1995 22:48:03 +0000 (+0000) Subject: (_all): New target. Now use Jim Meyering's formulation of AIX X-Git-Tag: Release-0-25~290 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=232633cfa57646c89efb1f694941f8295b1d0f85;p=automake.git (_all): New target. Now use Jim Meyering's formulation of AIX workaround. (install-exec, install-data): New targets --- diff --git a/lib/am/subdirs.am b/lib/am/subdirs.am index 5aaabc71..730ee53b 100644 --- a/lib/am/subdirs.am +++ b/lib/am/subdirs.am @@ -7,16 +7,11 @@ @SET_MAKE@ -# NOTE: "all" is separate because otherwise the AIX 3.2.5 make will +# 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:: +# with no arguments. +_all: all +all install install-exec install-data 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 5aaabc71..730ee53b 100644 --- a/subdirs.am +++ b/subdirs.am @@ -7,16 +7,11 @@ @SET_MAKE@ -# NOTE: "all" is separate because otherwise the AIX 3.2.5 make will +# 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:: +# with no arguments. +_all: all +all install install-exec install-data install-info uninstall check info dvi id ID:: for subdir in $(SUBDIRS); do \ echo making $@ in $$subdir ; \ (cd $$subdir; $(MAKE) $@); \