Skip to content

Commit

Permalink
Add a README
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillikin committed Mar 3, 2019
1 parent a29ff74 commit 4779f77
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Bazel build rules for GNU M4

## Overview

```python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "rules_m4",
# See https://github.com/jmillikin/rules_m4/releases for copy-pastable
# URLs and checksums.
)

load("@rules_m4//m4:m4.bzl", "m4_register_toolchains")

m4_register_toolchains()
```

```python
load("@rules_m4//m4:m4.bzl", "m4")

m4(
name = "hello_world",
srcs = ["hello_world.in.txt"],
output = "hello_world.txt",
)
```

```python
genrule(
name = "hello_world_gen",
srcs = ["hello_world.in.txt"],
outs = ["hello_world_gen.txt"],
cmd = "$(M4) $(SRCS) > $@",
toolchains = ["@rules_m4//m4:toolchain"],
)
```

## Toolchains

```python
load("@rules_m4//m4:m4.bzl", "m4_common")

def _my_rule(ctx):
m4_toolchain = m4_common.m4_toolchain(ctx)
ctx.actions.run(
executable = m4_toolchain.m4_executable,
inputs = m4_toolchain.files,
# ...
)

my_rule = rule(
_my_rule,
toolchains = [m4_common.TOOLCHAIN_TYPE],
)
```

0 comments on commit 4779f77

Please # to comment.