2010-05-18 Justus Winter <4winter@informatik.uni-hamburg.de>
[grub.git] / autogen.sh
blobeb251f9f08575942c4592aa860c84f2c0fb4a0dc
1 #! /bin/sh
3 set -e
5 aclocal
6 autoconf
7 autoheader
9 # FIXME: automake doesn't like that there's no Makefile.am
10 automake -a -c -f || true
12 echo timestamp > stamp-h.in
14 python util/import_gcry.py lib/libgcrypt/ .
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/'`
20 done
21 sh gendistlist.sh > DISTLIST
23 exit 0