1e32eee0c2de28a3d6bce29d036f22af958b6bb3
[openwrt/svn-archive/archive.git] / package / wprobe / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/kernel.mk
9
10 PKG_NAME:=wprobe
11 PKG_VERSION:=1
12
13 PKG_BUILD_DEPENDS:=PACKAGE_wprobe-export:libipfix
14
15 PKG_CONFIG_DEPENDS = \
16 CONFIG_PACKAGE_kmod-wprobe \
17 CONFIG_PACKAGE_wprobe-export \
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define KernelPackage/wprobe
22 SUBMENU:=Network Support
23 TITLE:=Wireless driver probe infrastructure
24 FILES:= \
25 $(PKG_BUILD_DIR)/kernel/wprobe.$(LINUX_KMOD_SUFFIX)
26 AUTOLOAD:=$(call AutoLoad,01,wprobe)
27 endef
28
29 define KernelPackage/wprobe/description
30 A module that exports measurement data from wireless driver to user space
31 endef
32
33 define Package/wprobe-util
34 SECTION:=net
35 CATEGORY:=Network
36 DEPENDS:=+kmod-wprobe +libnl-tiny
37 TITLE:=Wireless measurement utility
38 endef
39
40 define Package/wprobe-util/description
41 wprobe-util uses the wprobe kernel module to query
42 wireless driver measurement data from an interface
43 endef
44
45 define Package/wprobe-export
46 SECTION:=net
47 CATEGORY:=Network
48 DEPENDS:=+wprobe-util
49 TITLE:=Wireless measurement data exporter
50 endef
51
52 define Package/wprobe-export/description
53 wprobe-export uses the wprobe kernel module to export
54 wireless driver measurement data via the IPFIX protocol
55 endef
56
57 define Build/Prepare
58 mkdir -p $(PKG_BUILD_DIR)
59 $(CP) src/* $(PKG_BUILD_DIR)/
60 endef
61
62 TARGET_CPPFLAGS := \
63 -I$(STAGING_DIR)/usr/include/libnl-tiny \
64 $(TARGET_CPPFLAGS)
65
66 ifdef CONFIG_PACKAGE_kmod-wprobe
67 define Build/Compile/kmod
68 $(MAKE) -C $(LINUX_DIR) \
69 CROSS_COMPILE="$(TARGET_CROSS)" \
70 ARCH="$(LINUX_KARCH)" \
71 SUBDIRS="$(PKG_BUILD_DIR)/kernel" \
72 KERNELDIR=$(LINUX_DIR) \
73 CC="$(TARGET_CC)" \
74 EXTRA_CFLAGS="-I$(PKG_BUILD_DIR)/kernel" \
75 modules
76 endef
77 endif
78
79 define Build/Compile/lib
80 $(MAKE) -C $(PKG_BUILD_DIR)/user \
81 $(TARGET_CONFIGURE_OPTS) \
82 CFLAGS="$(TARGET_CFLAGS)" \
83 CPPFLAGS="$(TARGET_CPPFLAGS) -I$(PKG_BUILD_DIR)/kernel" \
84 LDFLAGS="$(TARGET_LDFLAGS)" \
85 HOST_OS=Linux \
86 LIBNL="-lnl-tiny"
87 endef
88
89 ifdef CONFIG_PACKAGE_wprobe-export
90 define Build/Compile/exporter
91 $(MAKE) -C $(PKG_BUILD_DIR)/exporter \
92 $(TARGET_CONFIGURE_OPTS) \
93 CFLAGS="$(TARGET_CFLAGS)" \
94 CPPFLAGS="$(TARGET_CPPFLAGS) -I$(PKG_BUILD_DIR)/kernel -I$(PKG_BUILD_DIR)/user" \
95 LDFLAGS="$(TARGET_LDFLAGS)" \
96 LIBS="$(PKG_BUILD_DIR)/user/libwprobe.a $(STAGING_DIR)/usr/lib/libipfix.a $(STAGING_DIR)/usr/lib/libmisc.a -lnl-tiny -lm"
97 endef
98 endif
99
100 define Build/Compile
101 $(Build/Compile/kmod)
102 $(Build/Compile/lib)
103 $(Build/Compile/exporter)
104 endef
105
106 define Build/InstallDev
107 $(INSTALL_DIR) $(1)/usr/include/wprobe
108 $(CP) $(PKG_BUILD_DIR)/kernel/linux $(1)/usr/include/wprobe
109 endef
110
111 define Package/wprobe-util/install
112 $(INSTALL_DIR) $(1)/sbin
113 $(INSTALL_BIN) $(PKG_BUILD_DIR)/user/wprobe-util $(1)/sbin/
114 endef
115
116 define Package/wprobe-export/install
117 $(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d $(1)/etc/config
118 $(INSTALL_BIN) ./files/wprobe.init $(1)/etc/init.d/
119 $(INSTALL_BIN) ./files/wprobe.config $(1)/etc/config/wprobe
120 $(INSTALL_BIN) $(PKG_BUILD_DIR)/exporter/wprobe-export $(1)/sbin/
121 endef
122
123 $(eval $(call KernelPackage,wprobe))
124 $(eval $(call BuildPackage,wprobe-util))
125 $(eval $(call BuildPackage,wprobe-export))