mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-01-28 01:47:19 +01:00
20 lines
648 B
Makefile
20 lines
648 B
Makefile
define Package/map-plugins-steer-rate
|
|
$(call Package/map-plugins/Default)
|
|
TITLE:=STA steering based on estimated throughput of target-AP
|
|
DEPENDS= +libubox +libuci +libubus +libeasy +libnl-genl \
|
|
+libjson-c +libblobmsg-json +map-controller \
|
|
+map-plugins
|
|
endef
|
|
|
|
define Package/map-plugins-steer-rate/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DIR) $(1)/usr/lib/mapcontroller
|
|
$(CP) $(PKG_BUILD_DIR)/steer/rate/rate.so $(1)/usr/lib/mapcontroller/rate.so
|
|
endef
|
|
|
|
define Build/Compile/map-plugins-steer-rate
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/steer/rate \
|
|
CC="$(TARGET_CC)" \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)";
|
|
endef
|