File: autogen.sh

package info (click to toggle)
menu 2.1.46
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,012 kB
  • sloc: cpp: 4,509; sh: 969; makefile: 223; perl: 104; ansic: 52
file content (11 lines) | stat: -rwxr-xr-x 435 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh
#This very stupid shell script is Public Domain.

errorconf="returned an error code or did not exists at all. \
You need autoconf >= 2.50 and automake >= 1.4. Sorry!"

aclocal || { echo "aclocal $errorconf"; exit 1; }
autoconf || { echo "autoconf $errorconf"; exit 1; }
autoheader || { echo "autoheader $errorconf"; exit 1; }
automake -a -c || { echo "automake $errorconf"; exit 1; }
./configure --enable-maintainer-mode $*