2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-25 17:31:25 +00:00
rules_foreign_cc/examples/third_party/autotools/BUILD.bazel

30 lines
617 B
Python
Raw Normal View History

load("@bazel_skylib//rules:build_test.bzl", "build_test")
build_test(
name = "m4_build_test",
tags = ["manual"],
targets = ["@m4//:m4"],
visibility = ["//:__pkg__"],
)
build_test(
name = "autoconf_build_test",
tags = ["manual"],
targets = ["@autoconf//:autoconf"],
visibility = ["//:__pkg__"],
)
build_test(
name = "automake_build_test",
tags = ["manual"],
targets = ["@automake//:automake"],
visibility = ["//:__pkg__"],
)
build_test(
name = "libtool_build_test",
tags = ["manual"],
targets = ["@libtool//:libtool"],
visibility = ["//:__pkg__"],
)