File: autogen.sh

package info (click to toggle)
libsocketcan 0.0.9%2Bgit20140207-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 344 kB
  • ctags: 116
  • sloc: ansic: 627; sh: 41; makefile: 8
file content (22 lines) | stat: -rwxr-xr-x 277 bytes parent folder | download | duplicates (5)
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 --symlink -Wall || exit $?

banner "Finished"