Move some stuff around so customizations in Setup take precedence
This commit is contained in:
parent
896fc7ed4a
commit
275fbe21c9
|
@ -11,8 +11,6 @@
|
||||||
MODOBJS= _MODOBJS_
|
MODOBJS= _MODOBJS_
|
||||||
MODLIBS= _MODLIBS_
|
MODLIBS= _MODLIBS_
|
||||||
|
|
||||||
# === Definitions added by makesetup ===
|
|
||||||
|
|
||||||
# === Variables set by configure ===
|
# === Variables set by configure ===
|
||||||
|
|
||||||
srcdir= @srcdir@
|
srcdir= @srcdir@
|
||||||
|
@ -45,8 +43,7 @@ CCSHARED= @CCSHARED@
|
||||||
LINKFORSHARED= @LINKFORSHARED@
|
LINKFORSHARED= @LINKFORSHARED@
|
||||||
DESTSHARED= $(exec_prefix)/lib/python/$(MACHDEP)
|
DESTSHARED= $(exec_prefix)/lib/python/$(MACHDEP)
|
||||||
|
|
||||||
|
# === Variables that are customizable by hand or by inclusion in Setup ===
|
||||||
# === Variables that are customizable by hand ===
|
|
||||||
|
|
||||||
LINKCC= $(CC)
|
LINKCC= $(CC)
|
||||||
INCLDIR= $(srcdir)/../Include
|
INCLDIR= $(srcdir)/../Include
|
||||||
|
@ -57,6 +54,14 @@ SHELL= /bin/sh
|
||||||
|
|
||||||
MAKESETUP= $(srcdir)/makesetup
|
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 ===
|
# === Fixed definitions ===
|
||||||
|
|
||||||
OBJS= $(MODOBJS)
|
OBJS= $(MODOBJS)
|
||||||
|
|
Loading…
Reference in New Issue