Tests About Natural Selection In Virtual Environment
c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run_autotools.sh 377B

123456789101112131415161718192021
  1. #!/bin/bash
  2. if [ $# -eq 1 ]
  3. then
  4. echo "cleaning directory"
  5. rm depcomp install-sh missing Makefile.in aclocal.m4 configure src/Makefile.in config/config.h config/stamp-h1 2>/dev/null
  6. rm -R autom4te.cache/
  7. rm config.status
  8. rm config.log
  9. rm -R src/.deps
  10. rm Makefile
  11. rm src/Makefile
  12. exit
  13. fi
  14. echo "Running autotools"
  15. autoheader
  16. aclocal
  17. autoconf
  18. automake --foreign -a -c