Skip to content
Snippets Groups Projects
Select Git revision
  • 0x4A6F-rpi4
  • 0x4A6F-master
  • master
  • v2018.2.2-ffs
  • v2018.2.x default protected
  • v2016.2.4-batmanbug
  • radv-filterd
  • v2016.2.x
  • hoodselector
  • v2016.1.x
  • babel
  • v2015.1.x
  • 2014.4.x
  • 2014.3.x
  • v2018.2.2-ffs0.1
  • v2018.2.1-ffs0.1
  • v2018.2.1
  • v2018.2-ffs0.1
  • v2018.2
  • v2018.1.4
  • v2018.1.3
  • v2018.1.2
  • v2018.1.1
  • v2018.1
  • v2017.1.8
  • v2017.1.7
  • v2017.1.6
  • v2017.1.5
  • v2017.1.4
  • v2017.1.3
  • v2017.1.2
  • v2016.2.7
  • v2017.1.1
  • v2017.1
34 results

Makefile

Blame
  • Forked from firmware / FFS Gluon
    4265 commits behind the upstream repository.
    Makefile 563 B
    include $(TOPDIR)/rules.mk
    
    PKG_NAME:=gluon-announced
    PKG_VERSION:=2
    PKG_RELEASE:=1
    
    PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
    
    include $(INCLUDE_DIR)/package.mk
    
    define Package/gluon-announced
      SECTION:=gluon
      CATEGORY:=Gluon
      TITLE:=Provides node information to the network
      DEPENDS:=+gluon-announce +respondd +lua-deflate
    endef
    
    define Build/Prepare
    	mkdir -p $(PKG_BUILD_DIR)
    endef
    
    define Build/Configure
    endef
    
    define Build/Compile
    endef
    
    define Package/gluon-announced/install
    	$(CP) ./files/* $(1)/
    endef
    
    $(eval $(call BuildPackage,gluon-announced))