]> git.proxmox.com Git - grub2.git/blob - autogen.sh
2009-11-24 Felix Zielcke <fzielcke@z-51.de>
[grub2.git] / autogen.sh
1 #! /bin/sh
2
3 set -e
4
5 aclocal
6 autoconf
7 autoheader
8
9 echo timestamp > stamp-h.in
10
11 python util/import_gcry.py lib/libgcrypt/ .
12
13 for rmk in conf/*.rmk ${GRUB_CONTRIB}/*/conf/*.rmk; do
14 if test -e $rmk ; then
15 ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
16 fi
17 done
18 sh gendistlist.sh > DISTLIST
19
20 exit 0