File: autogen.sh

package info (click to toggle)
pcsxr 1.9.92-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 9,476 kB
  • ctags: 10,312
  • sloc: ansic: 104,342; sh: 10,800; objc: 3,312; makefile: 277; asm: 136; pascal: 30; sed: 16
file content (12 lines) | stat: -rwxr-xr-x 275 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
# Additional options go to configure.

echo "Rebuilding ./configure with autoreconf..."
autoreconf -f -i
if [ $? -ne 0 ]; then
  echo "autoreconf failed"
  exit $?
fi

./configure --enable-maintainer-mode "$@"