Commit ec565296 authored by Ken Manheimer's avatar Ken Manheimer

We're now expecting the Makefile.pre.in to be in the root dir, and

copying it over to each extension dir where it is being used.

Also, we've updated and are checking in copyright 1.0.
parent b5ae02fa
##############################################################################
#
# Zope Public License (ZPL) Version 0.9.7
# ---------------------------------------
# Zope Public License (ZPL) Version 1.0
# -------------------------------------
#
# Copyright (c) Digital Creations. All rights reserved.
#
......@@ -104,6 +104,10 @@ def make(*args):
print 'Compiling extensions in %s' % string.join(args,'/')
for a in args: os.chdir(a)
# Copy over the prototype makefile:
root_path = len(args) * "../"
do("cp %sMakefile.pre.in ." % root_path)
# ... and now use it.
do('make -f Makefile.pre.in boot PYTHON=%s' % sys.executable)
do('make')
do('make clean')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment