1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00
elinks/autogen.sh

28 lines
598 B
Bash
Raw Normal View History

#!/bin/sh
echo acinclude.m4...
(
echo "dnl Automatically generated from config/m4/ files by autogen.sh!"
echo "dnl Do not modify!"
cat config/m4/*.m4
) > acinclude.m4
echo aclocal...
aclocal
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...
rm -f config.cache
echo done