summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 1c3417cd83d9fbc65db211e98305a91502cb3e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

# Check if hugin has been obtained:
if [ ! -f lrtp/autogen.sh ] || [ ! -f libaudioin/autogen.sh ]
then
		echo "You are missing the lrtp and/or libaudioin submodule."
		echo "Run"
		echo " git submodule init"
		echo " git submodule update"
		echo "to obtain them."
		exit 1
fi

# Now run autoreconf
${AUTORECONF:-autoreconf} -fiv
(cd lrtp; ./autogen.sh)
(cd libaudioin; ./autogen.sh)