view birthday_page/BUILD @ 34:6c322f9c2cb9

[Birthday] I didn't have nay time to buy birhtday present so w/e/
author MrJuneJune <me@mrjunejune.com>
date Sat, 11 Oct 2025 15:07:07 -0700
parents
children
line wrap: on
line source

load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("//gui_ze:gui_ze.bzl", "move_files_into_dir", "bundle")

filegroup(
  name = "pages_files",
  srcs = glob(["pages/**"]),
)

cc_binary(
  name = "server",
  srcs = ["main.c"],
  deps = ["//seobeo:seobeo"],
  data = [":pages_files"],
)