12 lines
97 B
Bash
Executable file
12 lines
97 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir autotools
|
|
|
|
aclocal
|
|
autoheader
|
|
automake -a -c
|
|
autoconf
|
|
automake
|
|
|
|
./configure $@
|
|
|