File: autotools

package info (click to toggle)
linux-atm 1%3A2.5.1-1.5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 7,512 kB
  • ctags: 4,814
  • sloc: ansic: 36,137; sh: 9,573; yacc: 1,193; lex: 556; makefile: 325; perl: 186; awk: 1
file content (21 lines) | stat: -rwxr-xr-x 399 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
#!/bin/sh

if [ "$1" = "--verbose" ]; then
	VERBOSE='--verbose'
else
	VERBOSE=''
fi

echo "Running libtoolize..."
libtoolize --force --copy
echo "Running aclocal..."
aclocal $VERBOSE
echo "Running autoconf..."
autoconf
echo "Running autoheader..."
autoheader
echo "Running automake..."
automake --force-missing --add-missing --copy $VERBOSE

echo "Finished...  Now run './configure' and 'make'..."