diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-26 17:42:44 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-26 17:43:54 -0400 |
commit | e061b6da5ee46a334169d4e6a52e49857ae22f55 (patch) | |
tree | 54be48f77a01ef3dce27e2e7df812e0846ddcd12 /config/cc-define.sh | |
parent | 83dd04452498408c1d46b7282ed08e9f5a1e76a8 (diff) | |
download | bfs-e061b6da5ee46a334169d4e6a52e49857ae22f55.tar.xz |
config: Move .c files into config/{use,has} subdirectories
Diffstat (limited to 'config/cc-define.sh')
-rwxr-xr-x | config/cc-define.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/config/cc-define.sh b/config/cc-define.sh deleted file mode 100755 index edb5c87..0000000 --- a/config/cc-define.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -# Copyright © Tavian Barnes <tavianator@tavianator.com> -# SPDX-License-Identifier: 0BSD - -# Output a C preprocessor definition based on whether a C source file could be -# compiled successfully - -set -eu - -SLUG="${1#config/}" -SLUG="${SLUG%.c}" -MACRO="BFS_HAS_$(printf '%s' "$SLUG" | tr 'a-z-' 'A-Z_')" - -if config/cc.sh "$1"; then - printf '#define %s true\n' "$MACRO" -else - printf '#define %s false\n' "$MACRO" -fi |