blob: 20ea5ed34badcefd3a4e26102c73f046d5e11aa5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#! /bin/sh
# Generate config.h.in
echo "autoheader..."
autoheader
echo "touch stamp-h"
touch stamp-h
# rerun libtoolize
echo "libtoolize..."
libtoolize --force
# add aclocal.m4 to current dir
echo "aclocal..."
aclocal
# This generates the configure script from configure.in
echo "autoconf..."
autoconf
# Generate Makefile.in from Makefile.am
echo "automake..."
automake
# configure
echo "./configure $*"
./configure $*
|