File: autogen.sh

package info (click to toggle)
spawn-fcgi 1.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 540 kB
  • ctags: 57
  • sloc: sh: 1,293; ansic: 534; makefile: 14
file content (12 lines) | stat: -rwxr-xr-x 280 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

set -e

if [ ! -f configure.ac -o ! -f COPYING ]; then
	echo "Doesn't look like you're in the source directory" >&2
	exit 1
fi

autoreconf --force --install
echo "Now type './configure ...' and 'make' to compile."