Files
kata-containers/tools/agent-ctl/Makefile
2020-06-28 20:36:33 -07:00

23 lines
201 B
Makefile

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