mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-28 03:24:24 +01:00
26 lines
250 B
Makefile
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
|