2005-09-15 09:58:31 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo aclocal...
|
|
|
|
aclocal
|
|
|
|
|
2005-09-27 17:23:38 -04:00
|
|
|
echo autoheader...
|
|
|
|
autoheader
|
2007-07-02 13:08:57 -04:00
|
|
|
# The timestamp of stamp-h.in indicates when config.h.in was last
|
|
|
|
# generated or found to be already correct. Create stamp-h.in so
|
|
|
|
# that it gets included in elinks-*.tar.gz and Makefile won't try
|
|
|
|
# to run a possibly incompatible version of autoheader (bug 936).
|
|
|
|
echo timestamp > stamp-h.in
|
2005-09-27 17:23:38 -04:00
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
echo autoconf...
|
|
|
|
autoconf
|
|
|
|
|
2007-07-19 14:28:33 -04:00
|
|
|
echo config.cache, autom4te.cache...
|
2005-09-15 09:58:31 -04:00
|
|
|
rm -f config.cache
|
2007-07-19 14:28:33 -04:00
|
|
|
rm -rf autom4te.cache
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
echo done
|