mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	The SUBDIRS variable has been removed in kernel 5.4, and was deprecated since the beginnig of kernel git history in favour of M or KBUILD_EXTMOD. Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Copyright (C) 2017 OpenWrt.org
 | |
| #
 | |
| # This is free software, licensed under the GNU General Public License v2.
 | |
| # See /LICENSE for more information.
 | |
| #
 | |
| 
 | |
| include $(TOPDIR)/rules.mk
 | |
| include $(INCLUDE_DIR)/kernel.mk
 | |
| 
 | |
| PKG_NAME:=gpio-nct5104d
 | |
| PKG_RELEASE:=1
 | |
| 
 | |
| PKG_MAINTAINER:=Florian Eckert <Eckert.Florian@googlemail.com>
 | |
| PKG_LICENSE:=GPL-2.0
 | |
| 
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| 
 | |
| define KernelPackage/gpio-nct5104d
 | |
|   SUBMENU:=Other modules
 | |
|   TITLE:= GPIO nct5104d support
 | |
|   DEPENDS:= @GPIO_SUPPORT @TARGET_x86
 | |
|   FILES:=$(PKG_BUILD_DIR)/gpio-nct5104d.ko
 | |
|   AUTOLOAD:=$(call AutoLoad,30,gpio-nct5104d,1)
 | |
|   KCONFIG:=
 | |
| endef
 | |
| 
 | |
| define KernelPackage/gpio-nct5104d/description
 | |
|   Support for GPIO functionality of NCT5104D super I/O chip.
 | |
| endef
 | |
| 
 | |
| EXTRA_KCONFIG:= \
 | |
| 	CONFIG_GPIO_NCT5104D=m
 | |
| 
 | |
| EXTRA_CFLAGS:= \
 | |
| 	$(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(EXTRA_KCONFIG)))) \
 | |
| 	$(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(EXTRA_KCONFIG)))) \
 | |
| 
 | |
| MAKE_OPTS:= \
 | |
| 	$(KERNEL_MAKE_FLAGS) \
 | |
| 	M="$(PKG_BUILD_DIR)" \
 | |
| 	EXTRA_CFLAGS="$(EXTRA_CFLAGS)" \
 | |
| 	$(EXTRA_KCONFIG)
 | |
| 
 | |
| define Build/Compile
 | |
| 	 $(MAKE) -C "$(LINUX_DIR)" \
 | |
| 		$(MAKE_OPTS) \
 | |
| 		modules
 | |
| endef
 | |
| 
 | |
| $(eval $(call KernelPackage,gpio-nct5104d))
 |