[backfire] merge r27449
[openwrt-10.03/.git] / package / ifxos / Makefile
1 #
2 # Copyright (C) 2009-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=lib_ifxos
12 PKG_VERSION:=1.5.12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_RELEASE:=1
15 PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
16 PKG_MD5SUM:=ba775356bdd5e1b73b3e11a152710ed6
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define KernelPackage/ifxos
21   SUBMENU:=Other modules
22   TITLE:=Lantiq OS abstraction library
23   URL:=http://www.lantiq.com/
24   MAINTAINER:=Lantiq
25   DEPENDS:=@TARGET_ifxmips @BROKEN
26   FILES:=$(PKG_BUILD_DIR)/src/drv_ifxos.$(LINUX_KMOD_SUFFIX)
27   AUTOLOAD:=$(call AutoLoad,10,drv_ifxos)
28 endef
29
30 CONFIGURE_ARGS += \
31         ARCH=$(LINUX_KARCH) \
32         --enable-linux-26 \
33         --enable-kernelbuild="$(LINUX_DIR)" \
34         --enable-kernelincl="$(LINUX_DIR)/include" \
35         --enable-add_drv_cflags="-fno-pic -mno-abicalls -mlong-calls -G 0"
36
37 define Build/Configure
38         (cd $(PKG_BUILD_DIR); aclocal && autoconf && automake)
39         $(call Build/Configure/Default)
40 endef
41
42 define Build/InstallDev
43         $(INSTALL_DIR) $(1)/usr/{lib,include/ifxos}
44         $(CP) $(PKG_BUILD_DIR)/src/include/* $(1)/usr/include/ifxos
45         mkdir -p $(1)/usr/lib
46         $(CP) $(PKG_BUILD_DIR)/src/libifxos.a $(1)/usr/lib/libifxos.a
47 endef
48
49 $(eval $(call KernelPackage,ifxos))