autogen.sh 261 B

1234567891011121314
  1. #!/bin/sh
  2. rm -rf autom4te.cache
  3. rm -f configure config.h.in
  4. IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
  5. autoconf $IPATHS || exit 1
  6. autoheader $IPATHS || exit 1
  7. rm -rf autom4te.cache
  8. echo "Now run ./configure and then make."
  9. exit 0