mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 11:31:05 +00:00
Nobody has volunteered to maintain the (currently broken) snap build, so remove it. Fixes: #6769. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
27 lines
539 B
Makefile
27 lines
539 B
Makefile
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
#
|
|
|
|
MK_DIR :=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
SED := sed
|
|
YQ := $(MK_DIR)/yq
|
|
VERSIONS_YAML_FILE := ../../versions.yaml
|
|
VERSION_FILE := ../../VERSION
|
|
|
|
export MK_DIR
|
|
export YQ
|
|
export VERSION_FILE
|
|
export VERSIONS_YAML_FILE
|
|
|
|
test-static-build:
|
|
@make -f $(MK_DIR)/static-build/qemu/Makefile
|
|
@make -f $(MK_DIR)/static-build/firecracker/Makefile
|
|
|
|
$(YQ):
|
|
@bash -c "source scripts/lib.sh; install_yq $${MK_DIR}"
|
|
|
|
.PHONY: test-static-build
|