#!/bin/sh
#
# This script installs the sources and builds the binaries for FLy8.
# You should modify the path for the *.zip file as well as review the
# makefile contents before running it. Then remove the two lines below.

echo did you change the paths as needed?
exit 1

unzip -La ..../fly8???1.zip
cd fly8
sh unix/setfly8
sh UNIX/config lx
(cd UNIX/js; cp joystick.h /usr/include/linux; make devs all)
make all 1>errs 2>&1
(cd docs; dodoc)
make install
cd ..
