b69fe70c26
Signed-off-by: Rufus Segar <rhs@riseup.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
597 B
Makefile
21 lines
597 B
Makefile
################################################################################
|
|
#
|
|
# agent-proxy
|
|
#
|
|
################################################################################
|
|
|
|
AGENT_PROXY_VERSION = agent-proxy-1.97
|
|
AGENT_PROXY_SITE = git://git.kernel.org/pub/scm/utils/kernel/kgdb/agent-proxy.git
|
|
AGENT_PROXY_LICENSE = GPL-2.0
|
|
AGENT_PROXY_LICENSE_FILES = COPYING
|
|
|
|
define HOST_AGENT_PROXY_BUILD_CMDS
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define HOST_AGENT_PROXY_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/agent-proxy $(HOST_DIR)/bin/agent-proxy
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|