631ef0dd2407628ceb479c94961a1a50d8856019
[openwrt/openwrt.git] / package / utils / spidev_test / Makefile
1 #
2 # Copyright (C) 2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=spidev-test
12 PKG_RELEASE:=$(LINUX_VERSION)
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/spidev-test
17 SECTION:=utils
18 CATEGORY:=Utilities
19 DEPENDS:=+kmod-spi-dev
20 TITLE:=SPI testing utility
21 VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
22 URL:=http://www.kernel.org
23 MAINTAINER:=Florian Fainelli <florian@openwrt.org>
24 endef
25
26 define Package/spidev-test/description
27 SPI testing utility.
28 endef
29
30 define Build/Prepare
31 endef
32
33 # requires 214-spidev_h_portability.patch
34 # or linux/ioctl.h include on musl
35 define Build/Compile
36
37 ifneq ($(CONFIG_LINUX_3_18)$(CONFIG_LINUX_4_1)$(CONFIG_LINUX_4_4),y)
38 $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/spidev_test \
39 $(LINUX_DIR)/tools/spi/spidev_test.c
40 else
41 $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/spidev_test \
42 $(LINUX_DIR)/Documentation/spi/spidev_test.c
43 endif
44
45 endef
46
47 define Package/spidev-test/install
48 $(INSTALL_DIR) $(1)/sbin
49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/spidev_test $(1)/sbin/
50 endef
51
52 $(eval $(call BuildPackage,spidev-test))