1
0

Makefile 706 B

12345678910111213141516171819202122232425262728
  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. PKG_NAME:=make-ext4fs
  10. PKG_SOURCE_URL=$(PROJECT_GIT)/make_ext4fs.git
  11. PKG_SOURCE_PROTO:=git
  12. PKG_SOURCE_DATE:=2020-01-05
  13. PKG_SOURCE_VERSION:=5c201be7d72aff735da27e17c29852e0cefe3e52
  14. PKG_MIRROR_HASH:=a9b74b7b95acc84a5a5c33d6acf493faad8f161caca3180734d9bd383c9d823f
  15. include $(INCLUDE_DIR)/host-build.mk
  16. define Host/Install
  17. $(INSTALL_BIN) $(HOST_BUILD_DIR)/make_ext4fs $(STAGING_DIR_HOST)/bin/
  18. endef
  19. define Host/Clean
  20. rm -f $(STAGING_DIR_HOST)/bin/make_ext4fs
  21. endef
  22. $(eval $(call HostBuild))