9 lines
79 B
Bash
Executable File
9 lines
79 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
ROOT=`realpath $(dirname $0)/../..`
|
|
pushd $ROOT
|
|
make
|
|
popd
|