Files
kata-containers/src/trace-forwarder/Makefile
Fabiano Fidêncio 5e407758f6 trace-forwarder: Add void "install" target
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>
2020-11-27 15:26:23 +01:00

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