head	1.1;
access;
symbols
	rel-2-4-3a:1.1
	rel-2-4-3:1.1
	rel-2-4-2:1.1
	rel-2-4-1:1.1
	rel-2-4-0-patches:1.1.0.2
	rel-2-4-0:1.1;
locks; strict;
comment	@# @;


1.1
date	2003.03.28.16.31.11;	author whmoseley;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Added support for automake and libtool
@
text
@#! /bin/sh

echo "$0 - for initialization of swish-e build environemnt"
echo "     not needed for user building"


#add --include-deps if you want to bootstrap with any other compiler than gcc
#automake --add-missing --copy --include-deps

set -x

aclocal -I config \
 && libtoolize --force --copy \
 && autoheader \
 && automake --add-missing --copy --foreign \
 && autoconf \
 && rm -f config.cache
@
