2002-12-27 08:53:07 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2009-11-16 19:31:29 +00:00
|
|
|
aclocal
|
2002-12-27 08:53:07 +00:00
|
|
|
autoconf
|
|
|
|
autoheader
|
2009-12-21 21:59:52 +00:00
|
|
|
xx
|
2009-11-24 18:51:35 +00:00
|
|
|
# FIXME: automake doesn't like that there's no Makefile.am
|
|
|
|
automake -a -c -f || true
|
|
|
|
|
2008-07-28 19:34:15 +00:00
|
|
|
echo timestamp > stamp-h.in
|
2009-11-17 10:22:54 +00:00
|
|
|
|
|
|
|
python util/import_gcry.py lib/libgcrypt/ .
|
|
|
|
|
2009-10-26 20:04:43 +00:00
|
|
|
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
|
2009-11-08 16:43:36 +00:00
|
|
|
sh gendistlist.sh > DISTLIST
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
exit 0
|