A shell that runs x86_64 assembly
c
x86-64
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

regen.sh 485B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. case $1
  3. in
  4. --clean|-c)
  5. make distclean
  6. rm -v ar-lib aclocal.m4 "config.h.in~" compile depcomp \
  7. INSTALL install-sh missing test-driver configure \
  8. Makefile.in tests/Makefile.in tests/samples/Makefile.in \
  9. tests/Makefile.am \
  10. 2>/dev/null
  11. rm -vR autom4te.cache/ .deps 2>/dev/null
  12. exit 0
  13. ;;
  14. --regen|-r)
  15. sh tests/regen.sh
  16. autoreconf
  17. ;;
  18. --new|-n|*)
  19. sh tests/regen.sh
  20. aclocal
  21. #autoheader
  22. automake -a
  23. autoconf
  24. autoreconf -i -m
  25. ;;
  26. esac