syncfiles/gen/BUILD.bazel
Dietrich Epp c96bb9cd0a Implement extended ASCII converter engine
This adds support for the simplest 8-bit character encodings, which are
compatible with ASCII.
2022-03-23 01:26:25 -04:00

19 lines
345 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_binary(
name = "macscript",
srcs = [
"data.go",
"filenames.go",
"main.go",
"rez.go",
"scriptmap.go",
"source.go",
],
visibility = ["//visibility:public"],
deps = [
"//gen/charmap",
"//gen/table",
],
)