mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-21 14:34:25 +01:00
16 lines
361 B
Makefile
16 lines
361 B
Makefile
#!/usr/bin/env bash
|
|
# Copyright (c) 2021 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-firecracker.sh"
|
|
|
|
clean:
|
|
rm -rf "$(MK_DIR)/firecracker"
|
|
rm "$(MK_DIR)/firecracker-static"
|
|
rm "$(MK_DIR)/jailer-static"
|