more package submenus
[openwrt/staging/chunkeey.git] / package / grub / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: Makefile 4855 2006-09-24 20:49:31Z nico $
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=grub
13 PKG_VERSION:=0.97
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=ftp://alpha.gnu.org/gnu/grub
18 PKG_MD5SUM:=cd3f3eb54446be6003156158d51f4884
19
20 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/grub-$(PKG_VERSION)
21 PKG_TARGETS:=bin
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/grub
26 SECTION:=boot
27 DEPENDS:=@TARGET_x86
28 CATEGORY:=Boot Loaders
29 TITLE:=GRand Unified Bootloader
30 URL:=http://www.gnu.org/software/grub/
31 endef
32
33 ifeq ($(HOST_ARCH),x86_64)
34 CONFIGURE_FLAGS:= \
35 --target=$(GNU_TARGET_NAME) \
36 --host=$(GNU_TARGET_NAME) \
37 --build=$(GNU_HOST_NAME)
38 else
39 CONFIGURE_FLAGS:=
40 endif
41
42 define Build/Configure
43 (cd $(PKG_BUILD_DIR); \
44 LDFLAGS="-static" \
45 ./configure \
46 $(CONFIGURE_FLAGS) \
47 --program-prefix="" \
48 --program-suffix="" \
49 --prefix=/usr \
50 --exec-prefix=/usr \
51 --bindir=/usr/bin \
52 --sbindir=/usr/sbin \
53 --libexecdir=/usr/lib \
54 --sysconfdir=/etc \
55 --datadir=/usr/share \
56 --localstatedir=/var \
57 --mandir=/usr/man \
58 --infodir=/usr/info \
59 $(DISABLE_NLS) \
60 --disable-auto-linux-mem-opt \
61 )
62 endef
63
64 #
65 # ./configure detects whether the host compiler supports
66 # -fno-stack-protector but only sets STAGE2_CFLAGS accordingly
67 #
68 define Build/Compile
69 $(MAKE) -C $(PKG_BUILD_DIR) \
70 GRUB_CFLAGS="\$$$$(STAGE2_CFLAGS)" \
71 STAGE1_CFLAGS="\$$$$(STAGE2_CFLAGS)"
72 endef
73
74 define Build/InstallDev
75 $(MAKE) -C $(PKG_BUILD_DIR) \
76 DESTDIR="$(STAGING_DIR_HOST)" \
77 install
78 mv $(STAGING_DIR_HOST)/usr/sbin/grub $(STAGING_DIR_HOST)/bin
79 endef
80
81 $(eval $(call BuildPackage,grub))