blob: bff1f69dd658c31107faf1173e0e15726f7bdf99 [file] [log] [blame]
Jan Schär10670e52025-04-23 12:54:48 +00001load("@aspect_bazel_lib//lib:expand_template.bzl", "expand_template")
Tim Windelschmidt16cb15a2025-02-24 18:47:48 +01002load("@rules_cc//cc:defs.bzl", "cc_binary")
3
Jan Schär10670e52025-04-23 12:54:48 +00004expand_template(
5 name = "stamp",
6 out = "stamp.h",
7 stamp = 1,
8 stamp_substitutions = {"copyright": "{{STABLE_MONOGON_copyright}}"},
9 template = ["#define COPYRIGHT_LINE \"copyright\""],
10)
11
Serge Bazanskieac8f732021-10-05 23:30:37 +020012cc_binary(
13 name = "minit",
14 srcs = [
15 "main.c",
Jan Schär10670e52025-04-23 12:54:48 +000016 ":stamp",
Serge Bazanskieac8f732021-10-05 23:30:37 +020017 ],
18 visibility = [
19 "//metropolis/node:__pkg__",
20 ],
21)