1
0
Fork 0
elinks/autogen.sh

22 lines
488 B
Bash
Raw Permalink Normal View History

#!/bin/sh
echo aclocal...
2017-11-25 19:58:26 +00:00
aclocal -I config/m4
2005-09-27 21:23:38 +00:00
echo autoheader...
autoheader
# 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 21:23:38 +00:00
echo autoconf...
autoconf
echo config.cache, autom4te.cache...
rm -f config.cache
rm -rf autom4te.cache
echo done