mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-30 16:42:07 +00:00
f61ce5d10b
* 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.
12 lines
197 B
Python
12 lines
197 B
Python
exports_files(["cxx_wrapper.sh"])
|
|
|
|
filegroup(
|
|
name = "srcs",
|
|
srcs = [
|
|
"Makefile",
|
|
"liba.cpp",
|
|
"liba.h",
|
|
],
|
|
visibility = ["//make_simple:__subpackages__"],
|
|
)
|