#!/bin/sh

# $Id: install,v 1.4 1994/11/02 10:44:39 surkau Exp $

# $Log: install,v $


#
# SecuDE Release 4.4 (GMD) 
#
#
#    Copyright (C) 1990-1994, GMD Darmstadt.
#
#                         NOTICE
#
#    Acquisition, use, and distribution of this module 
#    and related materials are subject to restrictions 
#    mentioned in each volume of the documentation.
#
#
# Installation script
#

date=`date '+%h %d, %H:%M:%S'`
host=`uname -n`
sys=`uname -rs`


echo "\"install $*\" on $host $sys $date ..."
./configure $*
echo "Clean everything before ..."
./make clean >/dev/null
echo "Make all ..."
./make all
