#!/usr/local/bin/perl -w
#
# Install.pl
#
#  Use Perl's nifty ExtUtil::Install package to manage
#  an install of the IBPerl package.  You MUST run this
#  from the IBPerl directory, with a blib directory below.
#  This is used for binary distributions.
#
#  Copyright 1998-1999 Bill Karwin

use strict;
use ExtUtils::Install;

install_default 'IBPerl';

exit 0;
