Files
kata-containers/Makefile
James O. D. Hunt 2a564c4f4b build: Add a clean rule
Add missing `clean` rule.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
2018-03-20 11:23:08 +00:00

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"