9 lines
72 B
Bash
9 lines
72 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
autoreconf -ifs
|
||
|
./configure
|
||
|
make
|