remake.sh 191 B

12345678910111213
  1. #!/usr/bin/env bash
  2. pushd ../src/
  3. autoreconf
  4. automake --add-missing
  5. popd
  6. pushd ../build/
  7. rm Makefile
  8. ../src/configure --prefix="`pwd`/.."
  9. make CXXFLAGS="-ggdb -Wall -O2" clean install
  10. popd