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