For Win32, added pragmas specifying the python15[_d].lib library.
diff --git a/PC/config.h b/PC/config.h
index 68e9c5a..4de07ef 100644
--- a/PC/config.h
+++ b/PC/config.h
@@ -197,6 +197,13 @@
 
 #ifdef MS_WIN32
 
+/* So nobody needs to specify the .lib in their Makefile any more */
+#ifdef _DEBUG
+#pragma comment(lib,"python15_d.lib")
+#else
+#pragma comment(lib,"python15.lib")
+#endif
+
 #define SIZEOF_INT 4
 #define SIZEOF_LONG 4