autogen.sh 397 B

123456789101112131415161718192021222324
  1. #! /bin/sh
  2. set -e
  3. aclocal
  4. autoconf
  5. autoheader
  6. # FIXME: automake doesn't like that there's no Makefile.am
  7. automake -a -c -f || true
  8. echo timestamp > stamp-h.in
  9. python util/import_gcry.py lib/libgcrypt/ .
  10. for rmk in conf/*.rmk ${GRUB_CONTRIB}/*/conf/*.rmk; do
  11. if test -e $rmk ; then
  12. ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
  13. fi
  14. done
  15. sh gendistlist.sh > DISTLIST
  16. exit 0