14 lines
198 B
Bash
Executable File
14 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# bootstrap:
|
|
# Build the configure script from the .in files.
|
|
#
|
|
# $Id$
|
|
#
|
|
set -x
|
|
aclocal -I config
|
|
# libtoolize --force --copy
|
|
autoheader
|
|
automake --foreign --add-missing --copy
|
|
autoconf
|