This commit adds support to build iprutils using GNU Autools. It replaces the old Makefile and version.mk file with Automake. Now, the version information is available at the configure.ac file. Signed-off-by: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> Signed-off-by: Brian King <brking@linux.vnet.ibm.com>
11 lines
127 B
Bash
Executable file
11 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
AUX_DIR=build-aux
|
|
|
|
test -d $AUX_DIR || mkdir -p $AUX_DIR
|
|
libtoolize
|
|
aclocal
|
|
autoconf
|
|
automake --add-missing
|