1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07: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