Files
kata-containers/tools/agent-ctl/Makefile
James O. D. Hunt 8a1949546c tools: Add agent-ctl tool
Add a low-level agent control tool that can manipulate the agent
via ttRPC.

Fixes: #222.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
2020-06-08 11:22:19 +01:00

17 lines
169 B
Makefile

# Copyright (c) 2020 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
default: build
build:
cargo build -v
clean:
cargo clean
.PHONY: \
build \
clean