
This directory contains tools to create Win32 icons for your application,
if you are using the GNU mingw32 cross-compiler tools.

What you need:
	The GNU win32 resource compiler, "windres"
		Should be in your cross-compiler kit
	The SDL BMP to ICO converter, natively compiled
		Should be in this directory, type 'make'
	The name of your application
	A BMP icon, 32 pixels wide and 32 pixels tall

What you do:
	sh makeico.sh -transparent appname icon.bmp

Substitute the name of your application for "appname" and the name of
your icon file for "icon.bmp".  If you don't want a transparent background
for your icon, leave out the word "-transparent".

After the script runs, it will produce a win32 object file "ico.o"
Link this with your application:
	cc -o appname.exe blah.o blah.o ico.o -mwindows
Your application will now have the icon you created from the BMP file.

That's it!

