summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 93c407a92c1147985fd9a7d651b3ec36b29c36ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

# wipe out temporary autotools files, necessary
# when switching between distros
rm -rf m4 aclocal.m4 autom4te.cache config.guess config.sub config.h.in configure depcomp install-sh ltmain.sh missing
mkdir m4

(cd src && ./gen-makefile-am.sh)

libtoolize -c
aclocal -I m4 -I m4-repo
autoheader
automake -a -c
autoconf