]> sourceware.org Git - automake.git/commitdiff
(all): Separated out due to AIX 3.2.5 bug.
authorTom Tromey <tromey@redhat.com>
Thu, 16 Nov 1995 18:43:43 +0000 (18:43 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 16 Nov 1995 18:43:43 +0000 (18:43 +0000)
lib/am/subdirs.am
subdirs.am

index 5e93c899f14f0a10293c5982ad8b5e430d02ecf9..5aaabc71baa561c3f9c950c5d2e2374dcd54683f 100644 (file)
@@ -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) $@); \
index 5e93c899f14f0a10293c5982ad8b5e430d02ecf9..5aaabc71baa561c3f9c950c5d2e2374dcd54683f 100644 (file)
@@ -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) $@); \
This page took 0.027186 seconds and 5 git commands to generate.