autogen.sh 179 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. set -x
  4. test -f ./Makefile && make distclean
  5. aclocal
  6. autoheader
  7. automake --force-missing --add-missing
  8. autoconf
  9. ./configure $@ && make -j${BUILDJOBS:-4} all