blob: 277ca92de907b643805c64f0c85dd0974c298f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
if (($# == 1 ))
then
PREFIX=${1/%\//}
else
PREFIX="/usr/local/ouroboros"
fi
BUILDDIR=build
DEBUGDIR=debug
bash compile_debug.sh "$PREFIX"
cd $BUILDDIR/$DEBUGDIR || exit 1
make install
|