summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 4bbaa55292ae818efa1e1bb9c21d2fb544cd0b44 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# SPDX-License-Identifier: BSD-3-Clause

set -e

{ ${AUTOHEADER:-autoheader} && touch config.h; } &
${ACLOCAL:-aclocal} -I m4 --install && touch aclocal.m4
${AUTOCONF:-autoconf} && touch configure

wait