Add a short autogen.sh script
[adesklets.git] / autogen.sh
blobd4e9b173d49962d75c3d13c2cdf2afad45f583ac
1 #! /bin/dash
3 # __very__ minimal autogen script
5 cat<<EOF
6 ----------------------------------------------------------------------
7 This is just an ordered invokation of the right autotools... If you do
8 not have what it takes, you are on your own (see the doc)!
9 ----------------------------------------------------------------------
11 EOF
13 set -x
14 aclocal && \
15 autoheader && \
16 automake && \
17 autoconf
19 cat<<EOF
21 ----------------------------------------------------------------------
22 That's all folk! See \`./configure --help'.
23 ----------------------------------------------------------------------
25 EOF