6 lines
121 B
Bash
Executable file
6 lines
121 B
Bash
Executable file
#!/bin/sh
|
|
# autogen.sh - Generate Autotools build files
|
|
|
|
set -e
|
|
mkdir -pv m4 build-aux
|
|
autoreconf -f --install --verbose
|