mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-04 08:02:31 +00:00
540253c265
* Implement support for "pure" GNU Make in make.bzl Usage: load("@rules_foreign_cc//tools/build_defs:make.bzl", "make") make(name = <name>, lib_source = <source>), please see more arguments in make.bzl Add test in examples/simple_make (runs only on Linux because of Makefile contents)
9 lines
112 B
C++
9 lines
112 B
C++
#ifndef LIBA_H_
|
|
#define LIBA_H_ (1)
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
std::string hello_liba(void);
|
|
|
|
#endif |