1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-04-18 00:47:36 -04:00
elinks/autogen.sh
Jonas Fonseca 9a5e25b31e Remove last automake trace and improve acinclude.m4 header
It seems that running autoheader is unnecessary so put your hands in the
air and wave goodbye to automake.

Mention that acinclude.m4 is generated by autogen.sh.
2005-09-27 23:19:52 +02:00

20 lines
275 B
Bash
Executable File

#!/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
echo autoconf...
autoconf
echo config.cache...
rm -f config.cache
echo done