Files
kata-containers/tools/agent-ctl/Makefile
Fabiano Fidêncio 68f66c515f agent-ctl: 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:29 +01:00

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