123456789101112131415161718 |
- #!/bin/sh
-
- make distclean
- rm -v ar-lib aclocal.m4 "config.h.in~" compile COPYING depcomp INSTALL install-sh missing test-driver configure Makefile.in tests/Makefile.in 2>/dev/null
- rm -vR autom4te.cache/ .deps 2>/dev/null
-
- if [ "$1" = "--clean" ]
- then
- exit 0
- fi
-
- sh tests/regen.sh
- autoheader
- autoreconf -i -m
- #automake --add-missing
- #autoconf
- #automake --add-missing
- #autoreconf
|