]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Move some stuff around so customizations in Setup take precedence
authorGuido van Rossum <guido@python.org>
Sat, 30 Sep 1995 17:01:49 +0000 (17:01 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 30 Sep 1995 17:01:49 +0000 (17:01 +0000)
Modules/Makefile.pre.in

index 49713007dd076758cafedd50de75d14e95a97a71..099fbeb662c90366c9062b9dff99bcbfb1d4d9fd 100644 (file)
@@ -11,8 +11,6 @@
 MODOBJS=       _MODOBJS_
 MODLIBS=       _MODLIBS_
 
-# === Definitions added by makesetup ===
-
 # === Variables set by configure ===
 
 srcdir=                @srcdir@
@@ -45,8 +43,7 @@ CCSHARED=     @CCSHARED@
 LINKFORSHARED= @LINKFORSHARED@
 DESTSHARED=    $(exec_prefix)/lib/python/$(MACHDEP)
 
-
-# === Variables that are customizable by hand ===
+# === Variables that are customizable by hand or by inclusion in Setup ===
 
 LINKCC=                $(CC)
 INCLDIR=       $(srcdir)/../Include
@@ -57,6 +54,14 @@ SHELL=               /bin/sh
 
 MAKESETUP=     $(srcdir)/makesetup
 
+# (The makesetup script inserts all variable definitions found
+# found in the Setup file just below the following line.
+# This means that the Setup file can override any of the definitions
+# given before this point, but not any given below.
+# The script insert the definitions in reverse order,
+# for the benefits of independent extensions.)
+# === Definitions added by makesetup ===
+
 # === Fixed definitions ===
 
 OBJS=          $(MODOBJS)