Files
kata-containers/Makefile
Jose Carlos Venegas Munoz 6dde7b8548 Makefile: Update makefile to build runtime
Change default runtime to build cli.

Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
2018-03-15 12:10:52 -06:00

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"