kagera/tools/reghack/Makefile

23 lines
521 B
Makefile

#
# Copyright (C) 2013, Asio Software Technologies
#
# This is free software, licensed under the GNU General Public License v2.
# See /COPYING for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME := reghack
include $(INCLUDE_DIR)/host-build.mk
define Host/Compile
mkdir -p $(HOST_BUILD_DIR)
$(HOSTCC) $(HOST_CFLAGS) $(HOST_STATIC_LINKING) -o $(HOST_BUILD_DIR)/reghack src/reghack.c
endef
define Host/Install
$(INSTALL_BIN) $(HOST_BUILD_DIR)/reghack $(STAGING_DIR_HOST)/bin/
endef
$(eval $(call HostBuild))