mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
20 lines
291 B
Bash
Executable File
20 lines
291 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo acinclude.m4...
|
|
echo "dnl This is automatically generated from m4/ files! Do not modify!" > acinclude.m4
|
|
cat config/m4/*.m4 >> acinclude.m4
|
|
|
|
echo aclocal...
|
|
aclocal
|
|
|
|
echo autoheader...
|
|
autoheader
|
|
|
|
echo autoconf...
|
|
autoconf
|
|
|
|
echo config.cache...
|
|
rm -f config.cache
|
|
|
|
echo done
|