grub/autogen.sh

24 lines
397 B
Bash
Raw Normal View History

2002-12-27 08:53:07 +00:00
#! /bin/sh
set -e
aclocal
2002-12-27 08:53:07 +00:00
autoconf
autoheader
# FIXME: automake doesn't like that there's no Makefile.am
automake -a -c -f || true
echo timestamp > stamp-h.in
python util/import_gcry.py lib/libgcrypt/ .
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
2002-12-27 08:53:07 +00:00
done
sh gendistlist.sh > DISTLIST
2002-12-27 08:53:07 +00:00
exit 0