789d4f21312487a808c4e40ec6e41f042d4836c1
[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
23 define Build/Configure
24 $(MAKE) -C $(PKG_BUILD_DIR) \
25 ARCH=arm \
26 slugos-nslu2-armeb_config
27 $(SED) 's,.*CONFIG_AEABI.*,$(if $(CONFIG_EABI_SUPPORT),CONFIG_AEABI=y,# CONFIG_AEABI is not set),' $(PKG_BUILD_DIR)/.config
28 endef
29
30 define Build/Compile
31 $(MAKE) -C $(PKG_BUILD_DIR) \
32 $(TARGET_CONFIGURE_OPTS) \
33 ARCH=arm \
34 all
35 endef
36
37 define Build/InstallDev
38 $(INSTALL_BIN) $(PKG_BUILD_DIR)/apex.bin $(TARGET)/apex-nslu2-armeb.bin
39 endef
40
41 $(eval $(call Build/DefaultTargets))