blob: f453d0ceb1a18bf3d61f592b7af28a61fad87c7c [file] [log] [blame]
# example/BUCK
genrule(
name = "example",
cmd = "cat $SRCS > $OUT",
out = "baz.txt",
srcs = [
"foo.txt",
"bar.txt",
],
deps = [
"//fake:rule",
],
visibility = [
"PUBLIC",
],
)