11 lines
284 B
Bash
Executable File
11 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Update the automake / autoconf configuration
|
|
#
|
|
|
|
rm -f config.cache config.log config.status
|
|
rm -f configure config.h config.h.in aclocal.m4
|
|
rm -f Makefile Makefile.in */Makefile */Makefile.in
|
|
autoheader && automake && aclocal && autoheader && autoconf && ./configure
|
|
|