summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c++/Makefile.in5
-rw-r--r--fortran/Makefile.in5
2 files changed, 8 insertions, 2 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in
index 3f18b9b..57c75bc 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -78,7 +78,10 @@ tests TAGS dep depend:
(cd $$d && $(MAKE) $@) || exit 1; \
done
-install-all install:
+install-all:
+ @$(MAKE) install
+
+install:
@@SETX@; for d in $(SUBDIRS); do \
(cd $$d && $(MAKE) $@) || exit 1; \
done
diff --git a/fortran/Makefile.in b/fortran/Makefile.in
index 981f8f8..909c79a 100644
--- a/fortran/Makefile.in
+++ b/fortran/Makefile.in
@@ -76,7 +76,10 @@ tests TAGS dep depend:
(cd $$d && $(MAKE) $@) || exit 1; \
done
-install-all install:
+install-all:
+ @$(MAKE) install
+
+install:
@@SETX@; for d in $(SUBDIRS); do \
(cd $$d && $(MAKE) $@) || exit 1; \
done