mirror of
https://github.com/depp/syncfiles.git
synced 2025-01-08 05:30:09 +00:00
f2317d0ce7
Add flags to the generator code to specify the location of input and output files.
17 lines
300 B
Python
17 lines
300 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|
|
|
go_binary(
|
|
name = "macscript",
|
|
srcs = [
|
|
"data.go",
|
|
"main.go",
|
|
"rez.go",
|
|
"scriptmap.go",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//gen/charmap",
|
|
"//gen/table",
|
|
],
|
|
)
|