fix apex compile on osx, suppress some build warnings
[openwrt/openwrt.git] / target / linux / ixp4xx / image / apex / 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$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=apex
12 PKG_VERSION:=1.5.13
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=ftp://ftp.buici.com/pub/apex/ \
18 ftp://metalab.unc.edu/pub/Linux/system/boot/apex/
19 PKG_MD5SUM:=5feb7a05431e5e8a4aa36fb23347de8e
20
21 include $(INCLUDE_DIR)/package.mk
22 export GCC_HONOUR_COPTS=s
23
24 define Build/Configure
25 $(MAKE) -C $(PKG_BUILD_DIR) \
26 ARCH=arm \
27 slugos-nslu2-armeb_config
28 $(SED) 's,.*CONFIG_AEABI.*,$(if $(CONFIG_EABI_SUPPORT),CONFIG_AEABI=y,# CONFIG_AEABI is not set),' $(PKG_BUILD_DIR)/.config
29 endef
30
31 define Build/Compile
32 $(MAKE) -C $(PKG_BUILD_DIR) \
33 $(TARGET_CONFIGURE_OPTS) \
34 KBUILD_HAVE_NLS=no \
35 ARCH=arm \
36 all
37 endef
38
39 define Build/InstallDev
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/apex.bin $(TARGET)/apex-nslu2-armeb.bin
41 endef
42
43 $(eval $(call Build/DefaultTargets))