mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-20 14:54:21 +01:00
21 lines
273 B
Makefile
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
|