mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-20 06:44:27 +01:00
24 lines
358 B
Makefile
24 lines
358 B
Makefile
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
all: runtime
|
|
|
|
runtime:
|
|
make -C cli
|
|
|
|
install:
|
|
make -C cli install
|
|
|
|
clean:
|
|
make -C cli clean
|
|
|
|
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"
|