gemini: In-flight ethernet patches
[openwrt/openwrt.git] / tools / make-ext4fs / Makefile
1 #
2 # Copyright (C) 2015 OpenWrt.org
3 # Copyright (C) 2016 LEDE project
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=make-ext4fs
11
12 PKG_SOURCE_URL=$(PROJECT_GIT)/project/make_ext4fs.git
13 PKG_SOURCE_PROTO:=git
14 PKG_SOURCE_DATE:=2020-01-05
15 PKG_SOURCE_VERSION:=5c201be7d72aff735da27e17c29852e0cefe3e52
16 PKG_MIRROR_HASH:=ec8304dc06f94338e14e608a807f48e10d0987bdac4d90f235650b46994dfbd7
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 define Host/Install
21 $(INSTALL_BIN) $(HOST_BUILD_DIR)/make_ext4fs $(STAGING_DIR_HOST)/bin/
22 endef
23
24 define Host/Clean
25 rm -f $(STAGING_DIR_HOST)/bin/make_ext4fs
26 endef
27
28 $(eval $(call HostBuild))