mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-30 20:44:26 +01:00
Avoid the accumulation of warnings we had, as reported in #750. Fixes: #750 Signed-off-by: Christophe de Dinechin <dinechin@redhat.com>
23 lines
229 B
Makefile
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
|