diff options
-rw-r--r-- | PC/icons.mak | 9 | ||||
-rw-r--r-- | PC/icons.rc | 4 |
2 files changed, 13 insertions, 0 deletions
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 + diff --git a/PC/icons.rc b/PC/icons.rc new file mode 100644 index 0000000..d0b4410 --- /dev/null +++ b/PC/icons.rc @@ -0,0 +1,4 @@ +101 ICON "py.ico" +102 ICON "pyc.ico" +103 ICON "pycon.ico" + |