Build release tarballs in bazel and add make bazel-release rule

This commit is contained in:
Jeff Grafton
2017-01-13 14:47:06 -08:00
parent 14dd0d3bef
commit bc4b6ac397
17 changed files with 521 additions and 26 deletions

16
hack/lib/BUILD Normal file
View File

@@ -0,0 +1,16 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)