Makefile 832 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. # compiled with i486 toolchain, statically linked with uClibc
  5. # cross-compile on amd64 does not work, so provide a binary package
  6. PKG_NAME:= grub-bin
  7. PKG_VERSION:= 1.97.1
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 24961a39e63d8ec16d765aad3a301cda
  10. PKG_DESCR:= GRUB bootloader
  11. PKG_SECTION:= sys
  12. PKG_SITES:= http://openadk.org/distfiles/
  13. PKG_TARGET_DEPENDS:= shuttle wrap alix1c alix2d
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,GRUB_BIN,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. PKGDFLT_GRUB_BIN= y
  17. INSTALL_STYLE:= manual
  18. do-install:
  19. ${CP} ${WRKBUILD}/* ${IDIR_GRUB_BIN}/
  20. include ${TOPDIR}/mk/pkg-bottom.mk