summaryrefslogtreecommitdiff
path: root/install_debug.sh
blob: 10e5070624b1ec95ec6cbb1020ae1b0d9c2770e3 (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=`echo "$1"|sed -e "s,\/$,,"`
else
    PREFIX="/usr/local/ouroboros/"
fi

BUILDDIR=build
DEBUGDIR=debug

bash compile_debug.sh $PREFIX

cd $BUILDDIR/$DEBUGDIR
make install