blob: 962876e16a6fee07e58b0938e19ca9096a9d421a [file] [log] [blame]
developerd92db592022-04-13 17:09:05 +08001#
2# Copyright (C) 2022 MediaTek Inc. All rights reserved.
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=fdt-patch-dm-verify
10PKG_VERSION:=1.0
11
12include $(INCLUDE_DIR)/host-build.mk
13
14define Host/Prepare
15 mkdir -p $(HOST_BUILD_DIR)
16 $(CP) -a ./src/* $(HOST_BUILD_DIR)/
17endef
18
19define Host/Install
20 $(INSTALL_BIN) $(HOST_BUILD_DIR)/fdt-patch-dm-verify $(STAGING_DIR_HOST)/bin/
21endef
22
23$(eval $(call HostBuild))