File: autogen.sh

package info (click to toggle)
cdargs 1.35-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 724 kB
  • ctags: 398
  • sloc: cpp: 1,185; sh: 491; lisp: 70; makefile: 14; csh: 3
file content (13 lines) | stat: -rwxr-xr-x 199 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

SRCDIR=`dirname $0`
rm -f $SRCDIR/config.cache
echo "aclocal"
aclocal -I m4
echo "autoconf"
autoconf
echo "automake"
automake --add-missing --copy
echo "configure"
$SRCDIR/configure
exit