*********************************************
*** How to install the vgagames libraries ***
*********************************************

See 0-README for an overview of vgagames.


Installation:

 - extract the source code,
   a directory will be created, e.g. vgagames-1.10/

 - go to this directory and type:
     make           to compile vgagames
     make install   as user root to install vgagames
     make examples  to make the example programs in example/
                    (you have to be root to compile for console libraries
                     svgalib or libvgl to create a setuid-root binary,
                     which they need for direct port access;
                     but for X window no root is required).


  Explanation of Makefile:
    make
    - "clean":       remove object files in your source code directory
    - "uninstall":   remove all installed files
                     (-> you must be user root to remove
                         the vgagames libraries from $(LIBPATH),
                         the vgagames[_*].h header files from $(INCPATH),
                         the information files from $(SHAREPATH),
                         the programs from $(BINPATH),
                         the config file "vgag-config.sh" from /usr/bin)
    - "config":      run tests for examination of the system
    - "lib_vga":     make the vgagames library for svgalib
    - "lib_vgl":     make the vgagames library for libvgl
    - "lib_x":       make the vgagames library for X
    - "vgag-wave":   make the wave server
    - "vgag-midi":   make midi support for the wave server
    - "vgag-nettcp": make the network server
    - "vgag-bitmap": make a "bitmap to vgagames-bitmap" converter
    - "install":     install the config file "vgag-config.sh" into /usr/bin,
                     the vgagames libraries into $(LIBPATH),
                     the vgagames[_*].h header files into $(INCPATH),
                     some information files into $(SHAREPATH),
                     some programs/servers into $(BINPATH)
                     (-> you must be user root)
    - "examples":    make the examples for the different graphic libraries
                     into your directory "vgagames/example".

