File: autotools

package info (click to toggle)
linux-atm 1%3A2.5.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,720 kB
  • sloc: ansic: 36,145; sh: 9,525; yacc: 1,193; lex: 556; makefile: 324; perl: 186; awk: 1
file content (21 lines) | stat: -rwxr-xr-x 399 bytes parent folder | download | duplicates (6)
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'..."