File: autogen.sh

package info (click to toggle)
nget 0.27.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,152 kB
  • ctags: 2,941
  • sloc: cpp: 15,311; python: 4,075; makefile: 242; ansic: 239; sh: 184
file content (12 lines) | stat: -rwxr-xr-x 263 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# Does everything needed to get a fresh cvs checkout to compilable state.

set -e
echo "running autoconf"
autoconf
echo "running autoheader"
autoheader
echo "running ./configure --enable-maintainer-mode" "$@"
./configure --enable-maintainer-mode "$@"