12 lines
115 B
Bash
Executable file
12 lines
115 B
Bash
Executable file
#!/bin/sh
|
|
|
|
aclocal
|
|
|
|
if [ "$1" = "--dist" ]; then
|
|
automake -acfi
|
|
else
|
|
automake -acf
|
|
fi
|
|
|
|
autoheader
|
|
autoconf
|