14 lines
164 B
Bash
Executable file
14 lines
164 B
Bash
Executable file
#! /bin/sh
|
|
|
|
set -ex
|
|
|
|
aclocal
|
|
autoheader
|
|
|
|
# Automake is unhappy without NEWS and README, but we don't have any
|
|
touch NEWS README
|
|
automake -a -c -f
|
|
|
|
autoconf
|
|
|
|
exit 0
|