7b49b6598fceed10c6cd8da17c0d43ba04157dd0
[openwrt/staging/florian.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-info
34 SECTION:=net
35 CATEGORY:=Network
36 DEPENDS:=+kmod-wprobe +libnl-tiny
37 TITLE:=Wireless measurement utility
38 endef
39
40 define Package/wprobe-info/description
41 wprobe-info 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:=+kmod-wprobe +libnl-tiny
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_CFLAGS += \
63 -I$(STAGING_DIR)/usr/include/libnl-tiny \
64 -I$(STAGING_DIR)/usr/include
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 LIBNL="-lnl-tiny"
86 endef
87
88 ifdef CONFIG_PACKAGE_wprobe-export
89 define Build/Compile/exporter
90 $(MAKE) -C $(PKG_BUILD_DIR)/exporter \
91 $(TARGET_CONFIGURE_OPTS) \
92 CFLAGS="$(TARGET_CFLAGS)" \
93 CPPFLAGS="$(TARGET_CPPFLAGS) -I$(PKG_BUILD_DIR)/kernel -I$(PKG_BUILD_DIR)/user" \
94 LDFLAGS="$(TARGET_LDFLAGS)" \
95 LIBS="$(PKG_BUILD_DIR)/user/libwprobe.a $(STAGING_DIR)/usr/lib/libipfix.a $(STAGING_DIR)/usr/lib/libmisc.a -lnl-tiny -lm"
96 endef
97 endif
98
99 define Build/Compile
100 $(Build/Compile/kmod)
101 $(Build/Compile/lib)
102 $(Build/Compile/exporter)
103 endef
104
105 define Build/InstallDev
106 $(INSTALL_DIR) $(1)/usr/include/wprobe
107 $(CP) $(PKG_BUILD_DIR)/kernel/linux $(1)/usr/include/wprobe
108 endef
109
110 define Package/wprobe-info/install
111 $(INSTALL_DIR) $(1)/sbin
112 $(INSTALL_BIN) $(PKG_BUILD_DIR)/user/wprobe-info $(1)/sbin/
113 endef
114
115 define Package/wprobe-export/install
116 $(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d
117 $(INSTALL_BIN) ./files/wprobe.init $(1)/etc/init.d/
118 $(INSTALL_BIN) $(PKG_BUILD_DIR)/exporter/wprobe-export $(1)/sbin/
119 endef
120
121 $(eval $(call KernelPackage,wprobe))
122 $(eval $(call BuildPackage,wprobe-info))
123 $(eval $(call BuildPackage,wprobe-export))