blob: e3f50b2ca2a031913e916be3a50b3501d4f1d463 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
#
# this should be run from the subsurface directory
if [ ! -d libdivecomputer/src ] ; then
git submodule init
git submodule update --recursive
fi
mkdir -p libdivecomputer/build
cd libdivecomputer/build
if [ ! -f ../configure ] ; then
# this is not a typo
# in some scenarios it appears that autoreconf doesn't copy the
# ltmain.sh file; running it twice, however, fixes that problem
autoreconf --install ..
autoreconf --install ..
fi
../configure --disable-examples --prefix=$INSTALL_ROOT
make -j4
make install
|