Added getmaxint() so sys can initialize sys.maxint.
Added Makefile.in.
diff --git a/Objects/intobject.c b/Objects/intobject.c
index e9c35d7..c1d750c 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -47,6 +47,12 @@
 #define LONG_BIT (CHAR_BIT * sizeof(long))
 #endif
 
+long
+getmaxint()
+{
+	return LONG_MAX;	/* To initialize sys.maxint */
+}
+
 /* Standard Booleans */
 
 intobject FalseObject = {