#!/bin/sh

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

INSTALL_PROGRAM=/usr/bin/install
./configure
cd src
make clean
make
echo "Installing /usr/local/bin/Eterm"
$(INSTALL_PROGRAM) -m 755 Eterm /usr/local/bin/Eterm
