f75b9b86d5
Signed-off-by: Jacob Appelbaum <jacob@appelbaum.net>
13 lines
144 B
Bash
Executable File
13 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Create configure and makefile stuff...
|
|
#
|
|
|
|
set -e
|
|
|
|
autoreconf -ivf
|
|
aclocal -I m4
|
|
autoheader
|
|
autoconf
|
|
automake --add-missing --copy
|