mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:49:03 -08:00
17 lines
431 B
Bash
Executable file
17 lines
431 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
# YES_BASH
|
|
# YES_DASH
|
|
|
|
pre() { ### @-
|
|
### dump all the `#define`s that `$CC $CPPFLAGS $CFLAGS $LDFLAGS` would result in.
|
|
###
|
|
### **TODO:** restore examples.
|
|
if [ -n "${ZSH_VERSION:-}" ]; then
|
|
${CC:-gcc} -dM -E - $=CPPFLAGS $=CFLAGS $=LDFLAGS < /dev/null
|
|
else
|
|
${CC:-gcc} -dM -E - $CPPFLAGS $CFLAGS $LDFLAGS < /dev/null
|
|
fi
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || pre "$@"
|