14 lines
183 B
Bash
14 lines
183 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
reconf () {
|
||
|
aclocal
|
||
|
libtoolize --copy --automake
|
||
|
autoconf
|
||
|
autoheader
|
||
|
automake --no-force --add-missing --copy
|
||
|
}
|
||
|
|
||
|
(cd ../../third_party/bnlib && reconf)
|
||
|
reconf
|
||
|
|