11 lines
90 B
Bash
11 lines
90 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./autogen.sh
|
||
|
|
||
|
./configure
|
||
|
make
|
||
|
make distcheck
|
||
|
make distclean
|