10 lines
183 B
Plaintext
10 lines
183 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
aclocal
|
||
|
autoconf
|
||
|
autoheader
|
||
|
|
||
|
# We don't use Makefile.am, but we *do* use automake to add
|
||
|
# "missing" files used by configure.
|
||
|
automake -a 2>&1 | grep -vF Makefile.am; true
|