8 lines
108 B
Bash
8 lines
108 B
Bash
|
#!/bin/sh
|
||
|
# Generate configure & friends for CVS users.
|
||
|
|
||
|
aclocal
|
||
|
automake --add-missing
|
||
|
autoheader
|
||
|
autoconf
|