mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
* CONFIG_TARGET_VERSION has not been used for years, remove it. * CONFIG_TARGET_CUSTOMER is only used by one feed and is defined there as well, so the definition here is not needed, remove it. Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
35 lines
552 B
Makefile
35 lines
552 B
Makefile
#
|
|
# Copyright (C) 2019 iopsys
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=iop
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=0
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/iop
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=iop utilities
|
|
endef
|
|
|
|
define Package/iop/description
|
|
This package contains iopsysWrt SDK utilities
|
|
endef
|
|
|
|
define Build/Compile
|
|
true
|
|
endef
|
|
|
|
define Package/iop/install
|
|
true
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,iop))
|