mirror of
				https://github.com/Telecominfraproject/wlan-ap.git
				synced 2025-10-29 17:42:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			487 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			487 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=nrf52840
 | |
| PKG_RELEASE:=1
 | |
| 
 | |
| PKG_MAINTAINER:=John Crispin <john@phrozen.org>
 | |
| 
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| 
 | |
| define Package/nrf52840
 | |
|   SECTION:=utils
 | |
|   CATEGORY:=Utilities
 | |
|   TITLE:=TIP NRF52840 support package
 | |
| endef
 | |
| 
 | |
| define Build/Prepare
 | |
| 	mkdir -p $(PKG_BUILD_DIR)
 | |
| endef
 | |
| 
 | |
| define Build/Compile/Default
 | |
| 
 | |
| endef
 | |
| Build/Compile = $(Build/Compile/Default)
 | |
| 
 | |
| define Package/nrf52840/install
 | |
| 	$(CP) ./files/* $(1)
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,nrf52840))
 | 
