2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-30 16:42:07 +00:00
rules_foreign_cc/examples/third_party/autotools/BUILD.bazel
James Sharpe 7baefc1a8c
Autotools examples (#754)
* Build files for autotools tools
* m4 1.4.19
2021-11-19 00:56:08 +00:00

30 lines
617 B
Python

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__"],
)