summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2003-03-14 20:49:14 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2003-03-14 20:49:14 +0000
commit6b9e0915356d2c87fd967722c4f8b127dd5bcbec (patch)
treea158d75d9a817e28512ca34f7a8edf10aaab260f /Makefile.in
parent51f1d98ae665dedfbf2deacb4731330c3fdf9040 (diff)
downloadgdb-6b9e0915356d2c87fd967722c4f8b127dd5bcbec.tar.gz
* Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index c40fd8155be..f70250dd8d7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -20,10 +20,6 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# Don't pass command-line variables to submakes.
-.NOEXPORT:
-MAKEOVERRIDES=
-
# -------------------------------
# Standard Autoconf-set variables
# -------------------------------
@@ -7529,10 +7525,18 @@ AUTOCONF = autoconf
$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/config/acx.m4
cd $(srcdir) && $(AUTOCONF)
+# ------------------------------
+# Special directives to GNU Make
+# ------------------------------
+
# Tell GNU make 3.79 not to run the top level in parallel. This
# prevents contention for $builddir/$target/config.cache, as well
# as minimizing scatter in file system caches.
NOTPARALLEL = .NOTPARALLEL
$(NOTPARALLEL):
+# Don't pass command-line variables to submakes.
+.NOEXPORT:
+MAKEOVERRIDES=
+
# end of Makefile.in