fc22844e83
* 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.
16 lines
264 B
Bash
Executable file
16 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
|