]> git.proxmox.com Git - grub2.git/blob - autogen.sh
2009-11-24 Robert Millan <rmh.grub@aybabtu.com>
[grub2.git] / autogen.sh
1 #! /bin/sh
2
3 set -e
4
5 aclocal
6 autoconf
7 autoheader
8
9 # FIXME: automake doesn't like that there's no Makefile.am
10 automake -a -c -f || true
11
12 echo timestamp > stamp-h.in
13
14 python util/import_gcry.py lib/libgcrypt/ .
15
16 for 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
20 done
21 sh gendistlist.sh > DISTLIST
22
23 exit 0