File: autogen.sh

package info (click to toggle)
mpdscribble 0.22-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 824 kB
  • ctags: 305
  • sloc: sh: 4,172; ansic: 2,666; makefile: 80
file content (14 lines) | stat: -rwxr-xr-x 218 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

rm -rf config.cache build
mkdir build

aclocal -I m4 $ACLOCAL_FLAGS
autoconf
autoheader
automake --add-missing $AUTOMAKE_FLAGS

if test x$NOCONFIGURE = x; then
	echo "./configure $*"
	./configure "$@"
fi