-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | autogen.bash | 9 | ||||
-rw-r--r-- | autogen.sh | 8 | ||||
-rw-r--r-- | configure.ac | 1 |
4 files changed, 11 insertions, 11 deletions
@@ -11,6 +11,4 @@ Makefile.in | |||
11 | /INSTALL | 11 | /INSTALL |
12 | /depcomp | ||
13 | /install-sh | ||
14 | /missing | ||
15 | /NEWS | 12 | /NEWS |
16 | TAGS | 13 | TAGS |
14 | /aux.d | ||
diff --git a/autogen.bash b/autogen.bash new file mode 100644 index 0000000..a798fad --- a/dev/null +++ b/autogen.bash | |||
@@ -0,0 +1,9 @@ | |||
1 | #!/bin/bash | ||
2 | ( cd "$(dirname "$0")" \ | ||
3 | && mkdir -p aux.d \ | ||
4 | && aclocal \ | ||
5 | && autoheader \ | ||
6 | && automake -a \ | ||
7 | && autoconf \ | ||
8 | && "$(dirname "$0")"/configure "$@" \ | ||
9 | ) | ||
diff --git a/autogen.sh b/autogen.sh deleted file mode 100644 index 86d2d88..0000000 --- a/autogen.sh +++ b/dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | WANT_AUTOMAKE=1.8 | ||
3 | export WANT_AUTOMAKE | ||
4 | aclocal \ | ||
5 | && autoheader \ | ||
6 | && automake -a \ | ||
7 | && autoconf \ | ||
8 | && ./configure "$@" | ||
diff --git a/configure.ac b/configure.ac index c814b53..1e0e42c 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -2,2 +2,3 @@ AC_INIT([iii], [0.3], [iii-bugs@klever.net]) | |||
2 | AC_CONFIG_SRCDIR([src/iiid.cc]) | 2 | AC_CONFIG_SRCDIR([src/iiid.cc]) |
3 | AC_CONFIG_AUX_DIR([aux.d]) | ||
3 | AC_CONFIG_HEADERS([config.h]) | 4 | AC_CONFIG_HEADERS([config.h]) |