Rename all occurrences of "fbdev" into "am7xxx"
[gst-am7xxxsink.git] / autogen.sh
1 #!/bin/sh
2 # you can either set the environment variables AUTOCONF, AUTOHEADER, AUTOMAKE,
3 # ACLOCAL, AUTOPOINT and/or LIBTOOLIZE to the right versions, or leave them
4 # unset and get the defaults
5
6 autoreconf --verbose --force --install --make || {
7  echo 'autogen.sh failed';
8  exit 1;
9 }
10
11 ./configure || {
12  echo 'configure failed';
13  exit 1;
14 }
15
16 echo
17 echo "Now type 'make' to compile this module."
18 echo