Help compiling icons into an exe, for use with MSI advertisement.
diff --git a/PC/icons.mak b/PC/icons.mak
new file mode 100644
index 0000000..4a132c9
--- /dev/null
+++ b/PC/icons.mak
@@ -0,0 +1,9 @@
+python_icon.exe:	py.res empty.obj
+	link /out:python_icon.exe /machine:x86 /subsystem:windows py.res empty.obj
+
+py.res:	py.ico pyc.ico pycon.ico icons.rc
+	rc /fo py.res icons.rc
+
+empty.obj:	empty.c
+	cl /c empty.c
+