Requirements
============

libSDL and libSDL-devel
Optional: libSDL_ttf and libSDL_ttf-devel


Desktop Linux 
=============

Firstly make sure that you have the libSDL-devel library installed
(plus the libSDL_ttf-devel library if you are not using the pixmap font
option) and then type "make". If you are editing the source code and
modify any header files then type "make clean && make".

The build system has been set-up so that by default GNU Robbo runs from
the installation folder. If you want to install this software then you
should simply comment the existing PACKAGE_DATA_DIR, BINDIR and DOCDIR
group towards the top of the Makefile and uncomment the ones that
interest you. Then type :-

	make clean
	make
	(If installing system-wide then login as root now)
	make install


Sharp Zaurus
============

Type "make -f Makefile.zaurus". This creates an ipk.


GP2X
====

Type "make -f Makefile.gp2x". This creates a tarball.


FONT_USE_PIXMAP/FONT_USE_SDL_TTF
================================

The project renders the text using SDL_ttf by default, but if you would
rather use the pixmap font then you can edit the Makefile and select
FONT_USE_PIXMAP instead of FONT_USE_SDL_TTF.


Porting to Other Platforms
==========================

The build system and this project have been designed to make it as easy
as possible to port to other platforms and devices. It is possible that
you can use any of the existing platform targets as a template which
you can copy and modify to meet your specific requirements.

This project can run centred in any resolution greater than 240x240 via
the -XRESxYRES command line option. Therefore you could run it on
portrait orientated screens such as 240x320 and 480x640.



