A shell that runs x86_64 assembly
c
x86-64
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.

regen.sh 502B

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 docs/Makefile.in \
  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