mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-11 02:14:20 +01:00
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>
17 lines
169 B
Makefile
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
|