diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-06-18 15:45:45 +0200 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-06-18 15:49:38 +0200 |
commit | 0e03940802cebefdf6b0597a154bd9395e1af4d2 (patch) | |
tree | 409a58499128227dd57943515d003074190551f5 /run_autotools |
Add the vanilla version of the project
This version can still be found here:
http://www.roland-riegel.de/nload/index.html
Diffstat (limited to 'run_autotools')
-rwxr-xr-x | run_autotools | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/run_autotools b/run_autotools new file mode 100755 index 0000000..ce72b35 --- /dev/null +++ b/run_autotools @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "Running aclocal..." +aclocal || exit 1 +echo "Running autoheader..." +autoheader || exit 1 +echo "Running autoconf..." +autoconf || exit 1 +echo "Running automake..." +automake --add-missing --copy || exit 1 +echo "Finished." |