1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2025-02-05 15:43:22 -08:00

utility to dump C defines

This commit is contained in:
Connor Olding 2013-11-10 12:18:15 -08:00
parent a29620e69c
commit 10afbf7fef

6
sh/pre Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
if [ -n "${ZSH_VERSION:-}" ]; then
$CC -dM -E - $=CFLAGS $=LDFLAGS < /dev/null
else
$CC -dM -E - $CFLAGS $LDFLAGS < /dev/null
fi