blob: c9b307bd3e547ae646ea3c58c5cbc5be9f59dbfa [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
package(default_visibility = ["//visibility:public"])
cc_library(
name = "coremark_lib",
srcs = [
"core_list_join.c",
"core_main.c",
"core_matrix.c",
"core_state.c",
"core_util.c",
],
hdrs = [
"coremark.h",
],
includes = ["."],
deps = [
"@lowrisc_opentitan//third_party/coremark/top_earlgrey:core_portme",
],
)