diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-12-30 20:51:35 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2011-01-02 09:18:44 +0100 |
| commit | 41197333c6779832bd718fa55ed1b17d97e02304 (patch) | |
| tree | b907e56978a81305e838e52be366c95f11dcf549 /autogen.sh | |
| parent | 4b0f0873f91f7f37106fa39c6b8b5fa74f6a3dcc (diff) | |
Switch to autotools
To simplify the creation of packages for mtview, swtich to using the
autoconf make tools.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..a4fa9a2 --- /dev/null +++ b/autogen.sh | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | |||
| 3 | srcdir=`dirname $0` | ||
| 4 | test -z "$srcdir" && srcdir=. | ||
| 5 | |||
| 6 | ORIGDIR=`pwd` | ||
| 7 | cd $srcdir | ||
| 8 | |||
| 9 | autoreconf -v --install || exit 1 | ||
| 10 | cd $ORIGDIR || exit $? | ||
