If the general-instruction INSTALL file is not desired, just specify so in AUTOMAKE_OPTIONS rather than fiddling with it in autogen.sh.
11 lines
99 B
Bash
Executable file
11 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p autotools
|
|
|
|
aclocal
|
|
autoheader
|
|
automake -ac
|
|
autoconf
|
|
automake
|
|
|
|
./configure "$@"
|