diff seobeo/BUILD @ 17:d97ec3ded2ae

[Seobeo] Few changes... - Fixed seobeo edge for macos - Updated so that socket creation can be used for both client and server - Started on a cutelient library for making connection to the server.
author June Park <parkjune1995@gmail.com>
date Sat, 04 Oct 2025 07:53:12 -0700
parents f33d9ff8b6e8
children fa2b8af609d9
line wrap: on
line diff
--- a/seobeo/BUILD	Fri Oct 03 09:55:51 2025 -0700
+++ b/seobeo/BUILD	Sat Oct 04 07:53:12 2025 -0700
@@ -2,11 +2,6 @@
 load("@rules_cc//cc:cc_library.bzl", "cc_library")
 
 filegroup(
-  name = "pages_files",
-  srcs = glob(["pages/**"]),
-)
-
-filegroup(
   name = "seobeo_hdrs",
   srcs = [
     "seobeo.h",
@@ -15,15 +10,8 @@
   visibility = ["//visibility:public"],
 )
 
-cc_binary(
-  name = "seobeo_example",
-  srcs = ["main.c"],
-  deps = [":seobeo"],
-  data = [":pages_files"],
-)
-
 alias(
-  name   = "seobeo",
+  name = "seobeo",
   actual = select({
     "//config:macos":  ":seobeo_macos",
     "//config:linux":  ":seobeo_linux",