mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
Run the autogen.sh script to create generated files like these. * autogen.sh: New script, invoked by the top-level autogen.sh.
10 lines
165 B
Bash
Executable file
10 lines
165 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -f readline-activator.scm ] || {
|
|
echo "autogen.sh: run this command only in the guile-readline directory."
|
|
exit 1
|
|
}
|
|
|
|
aclocal -I .
|
|
autoconf
|
|
automake
|