11 lines
122 B
Plaintext
11 lines
122 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# This thinggie bootstraps the auto* build sys.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
aclocal
|
||
|
autoconf
|
||
|
automake --add-missing --copy -Wall
|
||
|
|