Moved customization to bgenlocations.py module.
diff --git a/Tools/bgen/bgen/bgenlocations.py b/Tools/bgen/bgen/bgenlocations.py
new file mode 100644
index 0000000..3ec9c05
--- /dev/null
+++ b/Tools/bgen/bgen/bgenlocations.py
@@ -0,0 +1,12 @@
+#
+# Local customizations
+#
+
+# Where to find the Universal Header include files:
+INCLUDEDIR="Sap:CW8 Gold:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:"
+
+# Where to put the python definitions file:
+TOOLBOXDIR="Moes:Development:Jack:Python 1.3:Mac:Lib:toolbox:"
+
+# Creator for C files:
+CREATOR="CWIE"
diff --git a/Tools/bgen/bgen/scantools.py b/Tools/bgen/bgen/scantools.py
index baed1d9..ec5c733 100644
--- a/Tools/bgen/bgen/scantools.py
+++ b/Tools/bgen/bgen/scantools.py
@@ -26,12 +26,7 @@
 except ImportError:
 	MacOS = None
 
-# Default preferences
-#CREATOR = 'KAHL'		# Guido's favorite text editor on the Mac
-#INCLUDEDIR = "D:Development:THINK C:Mac #includes:Apple #includes:"
-CREATOR = 'CWIE'		# Jack's favorite text editor on the Mac
-INCLUDEDIR = "Sap:CodeWarrior7:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:"
-
+from bgenlocations import CREATOR, INCLUDEDIR
 
 Error = "scantools.Error"