Root/autogen.sh

1#!/bin/sh
2# generated 2004/4/12 11:58:47 EDT by amp8165@localhost.(none)
3# using glademm V2.0.0
4
5if test ! -f install-sh ; then touch install-sh ; fi
6
7MAKE=`which gnumake`
8if test ! -x "$MAKE" ; then MAKE=`which gmake` ; fi
9if test ! -x "$MAKE" ; then MAKE=`which make` ; fi
10HAVE_GNU_MAKE=`$MAKE --version|grep -c "Free Software Foundation"`
11
12if test "$HAVE_GNU_MAKE" != "1"; then
13echo Using non GNU Make at $MAKE
14else
15echo Found GNU Make at $MAKE ... good.
16fi
17
18echo This script runs configure and make...
19echo You did remember necessary arguments for configure, right?
20
21if test ! -x `which aclocal`
22then echo you need autoconfig and automake to generate the Makefile
23fi
24if test ! -x `which automake`
25then echo you need automake to generate the Makefile
26fi
27
28libtoolize --force --copy
29autoheader
30aclocal
31automake --add-missing --copy --gnu
32autoconf
33#./configure $* && $MAKE
34

Archive Download this file

Branches:
development
master



interactive