1#!/bin/sh
2# LIC: GPL
3#***********************************************************************
4#
5# go
6#
7# Quick-start shell script to set up PPPoE
8#
9# Copyright (C) 2000 Roaring Penguin Software Inc.
10#
11# $Id$
12#***********************************************************************
13
14# Figure out directory of script
15MYDIR=`dirname $0`
16cd $MYDIR/src
17
18echo "Running ./configure..."
19./configure
20if [ "$?" != 0 ] ; then
21    echo "Oops!  It looks like ./configure failed."
22    exit 1
23fi
24
25echo "Running make..."
26make
27if [ "$?" != 0 ] ; then
28    echo "Oops!  It looks like make failed."
29    exit 1
30fi
31
32echo "Running make install..."
33make install
34
35if [ "$?" != 0 ] ; then
36    echo "Oops!  It looks like make install failed."
37    exit 1
38fi
39
40for i in a a a a a a a a a a a a a a a a a a a a a a a a a a a a ; do
41    echo ""
42done
43
44sh ../scripts/pppoe-setup
45