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 515B

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