2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 # $Id: Makefile 4855 2006-09-24 20:49:31Z nico $
9 include $(TOPDIR
)/rules.mk
10 include $(INCLUDE_DIR
)/kernel.mk
16 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
17 PKG_SOURCE_URL
:=ftp
://alpha.gnu.org
/gnu
/grub
18 PKG_MD5SUM
:=cd3f3eb54446be6003156158d51f4884
21 PKG_BUILD_DIR
:=$(KERNEL_BUILD_DIR
)/grub-
$(PKG_VERSION
)
23 include $(INCLUDE_DIR
)/package.mk
25 ifeq ($(HOST_ARCH
),x86_64
)
27 --target
=$(GNU_TARGET_NAME
) \
28 --host
=$(GNU_TARGET_NAME
) \
29 --build
=$(GNU_HOST_NAME
)
34 define Build
/Configure
35 (cd
$(PKG_BUILD_DIR
); \
45 --libexecdir
=/usr
/lib \
47 --datadir=/usr
/share \
48 --localstatedir
=/var \
52 --disable-auto-linux-mem-opt \
57 # ./configure detects whether the host compiler supports
58 # -fno-stack-protector but only sets STAGE2_CFLAGS accordingly
61 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
62 GRUB_CFLAGS
="\$$$$(STAGE2_CFLAGS)" \
63 STAGE1_CFLAGS
="\$$$$(STAGE2_CFLAGS)"
66 define Build
/InstallDev
67 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
68 DESTDIR
="$(STAGING_DIR)" \
72 $(eval
$(call Build
/DefaultTargets
))