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/make_simple/code/BUILD.bazel
Fabian Meumertzheim f61ce5d10b
Pass toolchain and user env variables to make invocation (#777)
* Pass toolchain and user env variables to make invocation

* Rename configure --> make

* Add integration test coverage for make flag passing

This requires making the make_simple Makefile more realistic by

* using CXX and forwarding it to the wrapper;
* using CXXFLAGS instead of CXX_FLAGS and not overwriting its contents.
2021-11-27 07:52:54 -08:00

12 lines
197 B
Python

exports_files(["cxx_wrapper.sh"])
filegroup(
name = "srcs",
srcs = [
"Makefile",
"liba.cpp",
"liba.h",
],
visibility = ["//make_simple:__subpackages__"],
)