Files
kata-containers/tools/agent-ctl/Makefile
Christophe de Dinechin 0e898c6bc4 rust-agent: Treat warnings as error
Avoid the accumulation of warnings we had, as reported in #750.

Fixes: #750

Signed-off-by: Christophe de Dinechin <dinechin@redhat.com>
2020-10-07 17:30:21 +02:00

23 lines
229 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:
check:
.PHONY: \
build \
test \
check \
clean