blob: 020677a0d30ff491b6c0f117330849f17b75393e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
ME=install_debug
if (($# == 1 ))
then
PREFIX=$1
else
PREFIX="/usr/local/ouroboros"
fi
BUILDDIR=build
DEBUGDIR=debug
bash compile_debug.sh $PREFIX
cd $BUILDDIR/$DEBUGDIR
make install
|