#!/bin/sh

# A simple script for configuring and compiling Eterm.
# You will have to set the binary setuid root yourself; see the SETSUID
# script included. Should be secure; do at your own risk.

# This version uses gcc's optimization.  If you don't have gcc, it might not work.

./configure --with-CFLAGS="-O6" $*
( cd src ; make clean )
make
make install
