firmware/src/packages/fff/fff-babeld/Makefile
Adrian Schmutzler fa2ead9306 packages/fff: Use tabs in Makefiles
Currently, Makefile use a mixture of tabs and spaces with various
indents. This harmonizes all Makefiles to use tab indentation only.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Reviewed-by: Tim Niemeyer <tim@tn-x.org>
2019-02-05 14:29:31 +01:00

41 lines
742 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-babeld
PKG_VERSION:=1
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-babeld
include $(INCLUDE_DIR)/package.mk
define Package/fff-babeld
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken babeld configuration example
URL:=http://www.freifunk-franken.de
DEPENDS:=+babeld
endef
define Package/fff-babeld/description
This is the Freifunk Franken Firmware babeld package.
This package provides an example babeld configuration.
endef
define Build/Prepare
echo "all: " > $(PKG_BUILD_DIR)/Makefile
endef
define Build/Configure
# nothing
endef
define Build/Compile
# nothing
endef
define Package/fff-babeld/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-babeld))