summaryrefslogtreecommitdiffstats
path: root/controller/build
blob: 60a17f1bcda7aaf7c941c4c9130cbff42990cf6e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if test ! -f Makefile; then
    if test ! -f configure; then
        autoreconf -vfi
    fi || exit 1

    ./configure --prefix="$(pwd)"
fi || exit 1

make