mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
27 lines
600 B
Makefile
27 lines
600 B
Makefile
|
|
define Package/libqos
|
|
$(call Package/easy-soc-libs)
|
|
TITLE:= QoS library (libqos)
|
|
DEPENDS+=+libnl +libnl-route +libeasy
|
|
endef
|
|
|
|
define Package/libqos/config
|
|
config LIBQOS_DEBUG
|
|
depends on PACKAGE_libqos
|
|
bool "Enable qos debugging"
|
|
default n
|
|
|
|
endef
|
|
|
|
define Build/InstallDev/libqos
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/libqos/include/qos.h $(1)/usr/include/
|
|
$(CP) $(PKG_BUILD_DIR)/libqos/libqos.so $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libqos/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/libqos/libqos*.so* $(1)/usr/lib/
|
|
endef
|
|
|