11 lines
83 B
Bash
Executable File
11 lines
83 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
./autogen.sh
|
|
./configure "$@"
|
|
make
|