1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-28 18:17:11 -07:00
rc/sh/pre

7 lines
192 B
Plaintext
Raw Normal View History

2013-11-10 12:18:15 -08:00
#!/usr/bin/env bash
if [ -n "${ZSH_VERSION:-}" ]; then
2019-05-27 02:39:45 -07:00
${CC:-gcc} -dM -E - $=CPPFLAGS $=CFLAGS $=LDFLAGS < /dev/null
2013-11-10 12:18:15 -08:00
else
2019-05-27 02:39:45 -07:00
${CC:-gcc} -dM -E - $CPPFLAGS $CFLAGS $LDFLAGS < /dev/null
2013-11-10 12:18:15 -08:00
fi