mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Change default runtime to build cli. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
24 lines
341 B
Makefile
24 lines
341 B
Makefile
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
all: runtime
|
|
|
|
runtime:
|
|
cd cli; \
|
|
make
|
|
install :
|
|
cd cli; \
|
|
make install
|
|
|
|
|
|
help:
|
|
@printf "To build a Kata Containers runtime:\n"
|
|
@printf "\n"
|
|
@printf " \$$ make [install]\n"
|
|
@printf "\n"
|
|
@printf "Project home: https://github.com/kata-containers\n"
|