summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 6d1c20a24f67c60022fe53e7d5f4be313b979adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

#
# usage:
#
# banner <target name>
#
banner() {
	echo
	TG=`echo $1 | sed -e "s,/.*/,,g"`
	LINE=`echo $TG |sed -e "s/./-/g"`
	echo $LINE
	echo $TG
	echo $LINE
	echo
}

banner "autoreconf"

autoreconf --force --install -Wall || exit $?

banner "Finished"