Files
kata-containers/Makefile
Peng Tao f53901ad43 makefile: add more build targets
To make it easy to build and test.

Signed-off-by: Peng Tao <bergwolf@hyper.sh>
2020-05-25 23:30:42 -07:00

21 lines
273 B
Makefile

# Copyright (c) 2020 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
default: runtime agent
runtime:
make -C src/runtime
agent:
make -C src/agent
test-runtime:
make -C src/runtime test
test-agent:
make -C src/agent check
test: test-runtime test-agent