* aclocal.m4: Move from here ...
* acinclude.m4: ... to here.
* autogen.sh: Add call to `aclocal'.
* configure.ac: Add AM_INIT_AUTOMAKE() after AC_INIT() call.
17 lines
264 B
Bash
Executable File
17 lines
264 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
aclocal
|
|
autoconf
|
|
autoheader
|
|
echo timestamp > stamp-h.in
|
|
for rmk in conf/*.rmk ${GRUB_CONTRIB}/*/conf/*.rmk; do
|
|
if test -e $rmk ; then
|
|
ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
|
|
fi
|
|
done
|
|
sh gendistlist.sh > DISTLIST
|
|
|
|
exit 0
|