mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 11:31:05 +00:00
Ensure the tests in the local `logging` crate are run for all consumers of it. Additionally, add a new test which checks that output is generated by a range of different log level `slog` macros. This is designed to ensure debug level output is always available for the consumers of the `logging` crate. Fixes: #2969. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
148 lines
3.0 KiB
Makefile
148 lines
3.0 KiB
Makefile
# Copyright (c) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Create a set of standard rules for a project such that:
|
|
#
|
|
# - The component depends on its Makefile.
|
|
# - "build-$(component)" is an alias for "$(component)".
|
|
#
|
|
# Parameters:
|
|
#
|
|
# $1 - Directory component lives in.
|
|
# $2 - Name of component.
|
|
#
|
|
# Note: The "clean" and "vendor" rules are the "odd one out" - they only
|
|
# depend on the Makefile. This ensure that running them won't first try
|
|
# to build the project.
|
|
|
|
define make_rules
|
|
$(2) : $(1)/$(2)/Makefile
|
|
make -C $(1)/$(2)
|
|
build-$(2) : $(2)
|
|
|
|
check-$(2) : $(2)
|
|
make -C $(1)/$(2) check
|
|
|
|
vendor-$(2) : $(1)/$(2)/Makefile
|
|
make -C $(1)/$(2) vendor
|
|
|
|
clean-$(2) : $(1)/$(2)/Makefile
|
|
make -C $(1)/$(2) clean
|
|
|
|
install-$(2) : $(2)
|
|
make -C $(1)/$(2) install
|
|
|
|
test-$(2) : $(2)
|
|
make -C $(1)/$(2) test
|
|
|
|
.PHONY: \
|
|
$(2) \
|
|
build-$(2) \
|
|
clean-$(2) \
|
|
check-$(2) \
|
|
vendor-$(2) \
|
|
test-$(2) \
|
|
install-$(2)
|
|
endef
|
|
|
|
# Define a set of rules for a source component.
|
|
#
|
|
# Parameters:
|
|
#
|
|
# $1 - Name of component.
|
|
|
|
define make_component_rules
|
|
$(eval $(call make_rules,src,$(1)))
|
|
endef
|
|
|
|
# Define a set of rules for a tool.
|
|
#
|
|
# Parameters:
|
|
#
|
|
# $1 - name of tool
|
|
|
|
define make_tool_rules
|
|
$(eval $(call make_rules,tools,$(1)))
|
|
endef
|
|
|
|
# Create a "${target}-all" alias which will cause each component/tool
|
|
# rule to be called.
|
|
#
|
|
# Parameters:
|
|
#
|
|
# $1 - List of targets to create rules for.
|
|
|
|
define make_all_rules
|
|
$(1)-all: $(foreach c,$(COMPONENTS) $(TOOLS),$(1)-$(c))
|
|
|
|
.PHONY: $(1) $(1)-all
|
|
endef
|
|
|
|
# Create all rules for the caller.
|
|
#
|
|
# Entry point to this file.
|
|
#
|
|
# Parameters:
|
|
#
|
|
# $1 - List of components.
|
|
# $2 - List of tools.
|
|
# $3 - List of standard targets.
|
|
define create_all_rules
|
|
|
|
all: $(1) $(2)
|
|
|
|
# Create rules for all components.
|
|
$(foreach c,$(1),$(eval $(call make_component_rules,$(c))))
|
|
|
|
# Create rules for all tools.
|
|
$(foreach c,$(2),$(eval $(call make_tool_rules,$(c))))
|
|
|
|
# Create the "-all" rules.
|
|
$(foreach a,$(3),$(eval $(call make_all_rules,$(a))))
|
|
|
|
# Support "make ${target}"
|
|
# (which is an alias for "make ${target}-all").
|
|
$(3) : % : %-all
|
|
|
|
endef
|
|
|
|
|
|
##VAR BUILD_TYPE=release|debug type of rust build
|
|
BUILD_TYPE = release
|
|
|
|
##VAR ARCH=arch target to build (format: uname -m)
|
|
ARCH = $(shell uname -m)
|
|
##VAR LIBC=musl|gnu
|
|
LIBC ?= musl
|
|
ifneq ($(LIBC),musl)
|
|
ifeq ($(LIBC),gnu)
|
|
override LIBC = gnu
|
|
else
|
|
$(error "ERROR: A non supported LIBC value was passed. Supported values are musl and gnu")
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(ARCH), ppc64le)
|
|
override ARCH = powerpc64le
|
|
override LIBC = gnu
|
|
$(warning "WARNING: powerpc64le-unknown-linux-musl target is unavailable")
|
|
endif
|
|
|
|
ifeq ($(ARCH), s390x)
|
|
override LIBC = gnu
|
|
$(warning "WARNING: s390x-unknown-linux-musl target is unavailable")
|
|
endif
|
|
|
|
|
|
EXTRA_RUSTFLAGS :=
|
|
ifeq ($(ARCH), aarch64)
|
|
override EXTRA_RUSTFLAGS = -C link-arg=-lgcc
|
|
$(warning "WARNING: aarch64-musl needs extra symbols from libgcc")
|
|
endif
|
|
|
|
TRIPLE = $(ARCH)-unknown-linux-$(LIBC)
|
|
|
|
CWD := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
|