INSTALL

	Stars3D is using the Simple DirectMedia Layer. So you will
	need the latest version from http://www.libsdl.org/. Under
	Debian GNU/Linux you can install the following packages
	with apt-get:

	 o libsdl1.2debian-all
	 o libsdl1.2-dev

	$ apt-get install libsdl1.2debian-all libsdl1.2-dev

	The following steps will compile Stars3D:

	$ tar -zxvf stars3d-0.5.tar.gz
	$ cd stars3d-0.5
	stars3d-0.5$ make
	stars3d-0.5$ ./stars3d
	stars3d-0.5$ ./stars3d_rotate
	stars3d-0.5$ ./stars3d_space
	stars3d-0.5$ ./stars3d_transformation


INSTALL: WIN32

	You will need the MinGW32 cross-compile environment for
	GNU/Linux from http://www.mingw.org/. If you are using
	the Debian GNU/Linux distribution then you can easily
	install the following three packages with apt-get:

	 o mingw32
	 o mingw32-binutils
	 o mingw32-runtime

	$ apt-get install mingw32 mingw32-binutils mingw32-runtime

	You will also need the Win32 version of the SDL development
	libraries. You can get the latest Win32 version of the SDL
	development libraries from http://www.libsdl.org/.

	Perform the following steps to create the Win32 binaries:

	$ mkdir MinGW32
	$ cd MinGW32
	MinGW32$ wget http://www.libsdl.org/release/SDL-devel-1.2.8-VC6.zip
	MinGW32$ unzip SDL-devel-1.2.8-VC6.zip
	MinGW32$ export SDL_PREFIX=$PWD/SDL-1.2.8
	$ cd ..
	$ unzip stars3d-0.5.zip
	$ cd stars3d-0.5
	stars3d-0.5$ make -f Makefile.MinGW32
	stars3d-0.5$ file -b stars3d.exe
	MS Windows PE 32-bit Intel 80386 GUI executable not relocatable

