mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-31 13:04:23 +01:00
Otherwise `make install` run from the top directory would just fail as the target is not defined. Fixes: #1149 Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
26 lines
251 B
Makefile
26 lines
251 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
|