]> git.proxmox.com Git - grub2.git/blame - autogen.sh
Merge mainline into cleanbuild
[grub2.git] / autogen.sh
CommitLineData
6a161fa9 1#! /bin/sh
2
3set -e
4
fc22844e 5aclocal
6a161fa9 6autoconf
7autoheader
d4e580ed 8
a031e91c
RM
9# FIXME: automake doesn't like that there's no Makefile.am
10automake -a -c -f || true
11
96cdbeff 12echo timestamp > stamp-h.in
0ef45b93
RM
13
14python util/import_gcry.py lib/libgcrypt/ .
15
cefabfe1 16for rmk in conf/*.rmk ${GRUB_CONTRIB}/*/conf/*.rmk; do
17 if test -e $rmk ; then
18 ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
19 fi
6a161fa9 20done
04114812 21sh gendistlist.sh > DISTLIST
6a161fa9 22
23exit 0