You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
licenses(["notice"]) # BSD 2-clause
|
|
|
|
filegroup(
|
|
name = "LICENSE",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
genrule(
|
|
name = "lnnasmlink",
|
|
outs = ["nasmlink"],
|
|
cmd = "ln -s $$(which nasm) $@",
|
|
)
|
|
|
|
sh_binary(
|
|
name = "nasm",
|
|
srcs = ["nasmlink"],
|
|
visibility = ["@libjpeg_turbo//:__pkg__"],
|
|
)
|