diff options
author | Tharre <tharre3@gmail.com> | 2014-04-08 09:19:33 +0200 |
---|---|---|
committer | xRamses <tharre3@gmail.com> | 2014-04-08 09:19:33 +0200 |
commit | c766f073e60c3aa51a3cc1555af87ded5823e5a0 (patch) | |
tree | 43595070e833b251b3f7ac7e94e5e992918194ef /out/config.sh | |
download | redo-c766f073e60c3aa51a3cc1555af87ded5823e5a0.tar.gz redo-c766f073e60c3aa51a3cc1555af87ded5823e5a0.tar.xz redo-c766f073e60c3aa51a3cc1555af87ded5823e5a0.zip |
Initial codebase
Diffstat (limited to 'out/config.sh')
-rw-r--r-- | out/config.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/out/config.sh b/out/config.sh new file mode 100644 index 0000000..7a1f34c --- /dev/null +++ b/out/config.sh @@ -0,0 +1,8 @@ +if type "clang" > /dev/null; then + PREF="clang" +else + PREF="gcc" +fi +CC=${CC-$PREF} +CFLAGS="-g -Wall -Wextra -std=c99 -pedantic" +LDFLAGS=-lcrypto |