Files
kata-containers/tools/agent-ctl/Makefile
James O. D. Hunt efe625dfc1 build: Remove whitespace
Zap trailing whitespace.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
2021-03-05 09:54:50 +00:00

26 lines
250 B
Makefile

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