strip the kernel version suffix from target directories, except for brcm-2.4 (the...
[openwrt/openwrt.git] / target / linux / x86 / image / 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 PKG_CAT:=zcat
20
21 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/grub-$(PKG_VERSION)
22
23 include $(INCLUDE_DIR)/package.mk
24
25 ifeq ($(HOST_ARCH),x86_64)
26 CONFIGURE_FLAGS:= \
27 --target=$(GNU_TARGET_NAME) \
28 --host=$(GNU_TARGET_NAME) \
29 --build=$(GNU_HOST_NAME)
30 else
31 CONFIGURE_FLAGS:=
32 endif
33
34 define Build/Configure
35 (cd $(PKG_BUILD_DIR); \
36 LDFLAGS="-static" \
37 ./configure \
38 $(CONFIGURE_FLAGS) \
39 --program-prefix="" \
40 --program-suffix="" \
41 --prefix=/usr \
42 --exec-prefix=/usr \
43 --bindir=/usr/bin \
44 --sbindir=/usr/sbin \
45 --libexecdir=/usr/lib \
46 --sysconfdir=/etc \
47 --datadir=/usr/share \
48 --localstatedir=/var \
49 --mandir=/usr/man \
50 --infodir=/usr/info \
51 $(DISABLE_NLS) \
52 --disable-auto-linux-mem-opt \
53 )
54 endef
55
56 #
57 # ./configure detects whether the host compiler supports
58 # -fno-stack-protector but only sets STAGE2_CFLAGS accordingly
59 #
60 define Build/Compile
61 $(MAKE) -C $(PKG_BUILD_DIR) \
62 GRUB_CFLAGS="\$$$$(STAGE2_CFLAGS)" \
63 STAGE1_CFLAGS="\$$$$(STAGE2_CFLAGS)"
64 endef
65
66 define Build/InstallDev
67 $(MAKE) -C $(PKG_BUILD_DIR) \
68 DESTDIR="$(STAGING_DIR_HOST)" \
69 install
70 mv $(STAGING_DIR_HOST)/usr/sbin/grub $(STAGING_DIR_HOST)/bin
71 endef
72
73 $(eval $(call Build/DefaultTargets))