summaryrefslogtreecommitdiffstats
path: root/controller/build
blob: a57f1b959ef3785f6d0f4bc42effeac01577cb8d (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 --with-git
fi || exit 1

make