Tests About Natural Selection In Virtual Environment
c
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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