mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-30 23:37:45 +00:00
Split qemu script to build qemu experimental using same dockerfile. Fixes: #1421 Depends-on: github.com/kata-containers/tests#3255 Signed-off-by: Carlos Venegas <jos.c.venegas.munoz@intel.com>
17 lines
337 B
Makefile
17 lines
337 B
Makefile
# Copyright (c) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
MK_DIR :=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
CONFIG_DIR := $(MK_DIR)/../../scripts/
|
|
|
|
build:
|
|
"$(MK_DIR)/build-static-qemu.sh"
|
|
|
|
build-experimental:
|
|
"$(MK_DIR)/build-static-qemu-experimental.sh"
|
|
|
|
clean:
|
|
rm -f kata-qemu-static.tar.gz
|