summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: f9fa2d4a3eb7e65547daa25cc74c3002b644351a (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 -I m4 --force --install -Wall || exit $?

banner "Finished"