mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-01 22:50:54 +00:00
`make vendor` isn't required anymore. People who need vendored code should use the `tools/packaging/release/generate_vendor.sh` script instead. Assisted-by: Claude AI Signed-off-by: Greg Kurz <groug@kaod.org>
33 lines
525 B
Makefile
33 lines
525 B
Makefile
# Copyright (c) 2020-2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
include ../../../utils.mk
|
|
|
|
.DEFAULT_GOAL := default
|
|
default: build
|
|
|
|
build:
|
|
@RUSTFLAGS="$(EXTRA_RUSTFLAGS) --deny warnings" cargo build -p kata-trace-forwarder --target $(TRIPLE) --$(BUILD_TYPE)
|
|
|
|
static-checks-build:
|
|
@echo "INFO: static-checks-build do nothing.."
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
test:
|
|
@cargo test -p kata-trace-forwarder -- --nocapture
|
|
|
|
install:
|
|
|
|
check: standard_rust_check
|
|
|
|
.PHONY: \
|
|
build \
|
|
check \
|
|
clean \
|
|
install \
|
|
test
|