mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-25 17:31:25 +00:00
8b8f31dd1b
* Added links to docs to top level README * Updated more docs * Added generated header
32 lines
540 B
Bash
Executable file
32 lines
540 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
# The block below functions as follows
|
|
#
|
|
# - Look for all assignments
|
|
# - Remove all load statements
|
|
# - Remove multi line load statements
|
|
# - Remvoe all whitespace
|
|
# - Remove all comments
|
|
# - Strip assignments
|
|
# - Generate `- [symbol](#sybol)` formatting
|
|
# - Sort entries
|
|
TABLE_OF_CONTENTS=$(grep "=" "$1" \
|
|
| sed '/^load.*/d' \
|
|
| sed '/,$/d' \
|
|
| sed '/^$/d' \
|
|
| sed '/^#/d' \
|
|
| sed 's/ = .*//' \
|
|
| sed 's/\(.*\)/- [\1](#\1)/' \
|
|
| sort -f
|
|
)
|
|
|
|
cat << EOF > "$2"
|
|
# Rules Foreign CC
|
|
|
|
${TABLE_OF_CONTENTS}
|
|
EOF
|