2
0

bootstrap.sh 201 B

1234567891011121314
  1. #!/bin/sh
  2. reconf () {
  3. aclocal
  4. mkdir -p config
  5. libtoolize --copy --automake
  6. autoconf
  7. autoheader
  8. automake --no-force --add-missing --copy
  9. }
  10. (cd third_party/bnlib && ./bootstrap.sh)
  11. reconf