add siit for stateless ip and icmp translation to ipv6
[openwrt/staging/yousong.git] / package / siit / 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 10203 2008-01-15 03:25:11Z matteo $
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=siit
13 PKG_VERSION:=1.1
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define KernelPackage/siit
18 SUBMENU:=Network Devices
19 TITLE:=Stateless IP ICMP Translation Algorithm
20 FILES:=$(PKG_BUILD_DIR)/siit.$(LINUX_KMOD_SUFFIX)
21 AUTOLOAD:=$(call AutoLoad,50,siit)
22 endef
23
24 define KernelPackage/siit/description
25 Stateless IP ICMP Translation Algorithm
26 endef
27
28 define Build/Prepare
29 mkdir -p $(PKG_BUILD_DIR)
30 cp src/Makefile src/siit.h src/siit.c $(PKG_BUILD_DIR)/
31 endef
32
33 define Build/Compile
34 $(MAKE) -C $(LINUX_DIR) \
35 CROSS_COMPILE="$(TARGET_CROSS)" \
36 ARCH="$(LINUX_KARCH)" \
37 SUBDIRS="$(PKG_BUILD_DIR)" \
38 KERNELDIR=$(LINUX_DIR) \
39 CC="$(TARGET_CC)" \
40 modules
41 endef
42
43 $(eval $(call KernelPackage,siit))