Don't confuse mk1mf.pl by combining multiple options into one.
diff --git a/Configure b/Configure
index e4571dc..8f5285c 100755
--- a/Configure
+++ b/Configure
@@ -390,7 +390,13 @@
 		die "target already defined - $target\n" if ($target ne "");
 		$target=$_;
 		}
-	$options .= $_ unless $_ eq $target;
+	unless ($_ eq $target) {
+		if ($options eq "") {
+			$options = $_;
+		} else {
+			$options .= " ".$_;
+		}
+	}
 }
 
 if ($target eq "TABLE") {