Root/package/siit/Makefile

1#
2# Copyright (C) 2006-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
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=siit
12PKG_VERSION:=1.1
13PKG_RELEASE:=2
14
15include $(INCLUDE_DIR)/package.mk
16
17define KernelPackage/siit
18  SUBMENU:=Network Devices
19  TITLE:=Stateless IP ICMP Translation Algorithm
20  DEPENDS:= @(!(TARGET_ps3||TARGET_pxcab)||BROKEN)
21  FILES:=$(PKG_BUILD_DIR)/siit.ko
22  AUTOLOAD:=$(call AutoLoad,50,siit)
23endef
24
25include $(INCLUDE_DIR)/kernel-defaults.mk
26
27define KernelPackage/siit/description
28 Stateless IP ICMP Translation Algorithm
29endef
30
31define Build/Prepare
32    mkdir -p $(PKG_BUILD_DIR)
33    cp src/Makefile src/siit.h src/siit.c $(PKG_BUILD_DIR)/
34endef
35
36define Build/Compile
37    $(MAKE) $(KERNEL_MAKEOPTS) SUBDIRS="$(PKG_BUILD_DIR)" modules
38endef
39
40$(eval $(call KernelPackage,siit))
41

Archive Download this file



interactive