├── .bazelrc ├── .bcr ├── metadata.template.json ├── presubmit.yml └── source.template.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── BUILD ├── LICENSE ├── MODULE.bazel ├── README.md ├── WORKSPACE ├── WORKSPACE.bzlmod ├── deps.bzl ├── rules.bzl └── test ├── BUILD ├── main.c └── rules.bzl /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bcr/metadata.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/.bcr/metadata.template.json -------------------------------------------------------------------------------- /.bcr/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/.bcr/presubmit.yml -------------------------------------------------------------------------------- /.bcr/source.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/.bcr/source.template.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | workspace(name = "rules_apple_linker") 2 | -------------------------------------------------------------------------------- /deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/deps.bzl -------------------------------------------------------------------------------- /rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/rules.bzl -------------------------------------------------------------------------------- /test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/test/BUILD -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- 1 | int main() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /test/rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith/rules_apple_linker/HEAD/test/rules.bzl --------------------------------------------------------------------------------