mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-18 14:54:19 +01:00
23 lines
201 B
Makefile
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
|