1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:49:50 +03:00
openwrt-xburst/package/siit/Makefile
claudio ae57d8838c massive: replace occurences of .$(LINUX_KMOD_SUFFIX) with .ko after r21950
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22145 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-07-12 14:06:13 +00:00

41 lines
900 B
Makefile

#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=siit
PKG_VERSION:=1.1
PKG_RELEASE:=2
include $(INCLUDE_DIR)/package.mk
define KernelPackage/siit
SUBMENU:=Network Devices
TITLE:=Stateless IP ICMP Translation Algorithm
DEPENDS:= @(!(TARGET_ps3||TARGET_pxcab)||BROKEN)
FILES:=$(PKG_BUILD_DIR)/siit.ko
AUTOLOAD:=$(call AutoLoad,50,siit)
endef
include $(INCLUDE_DIR)/kernel-defaults.mk
define KernelPackage/siit/description
Stateless IP ICMP Translation Algorithm
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
cp src/Makefile src/siit.h src/siit.c $(PKG_BUILD_DIR)/
endef
define Build/Compile
$(MAKE) $(KERNEL_MAKEOPTS) SUBDIRS="$(PKG_BUILD_DIR)" modules
endef
$(eval $(call KernelPackage,siit))