blob: fe76a849898ee99621065b942c3969c63a802b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
aclocal -I m4
autoheader
libtoolize --automake
# Generate (for automake) lots of repetitive parts of tests/Makefile.am.
(cd tests && rm -f gen.mk
perl -ne '/^include / or print' Makefile.am \
| make -f - abs_srcdir=`dirname $(pwd)` gen.mk )
automake
autoconf
|