diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-02 13:46:34 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-02 13:46:34 +0200 |
commit | 22509ae8ab76f452f34947e95f618adf9605fa67 (patch) | |
tree | aed2afd0b3a17370dca55fb5107de2af9b225f67 | |
parent | ce3a22c641a9a7f1ced983d407e49ba31c71bfd2 (diff) |
config.mk: make optimized the default
-rw-r--r-- | config.mk | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -8,14 +8,14 @@ MANPREFIX = ${PREFIX}/share/man LIBS = -lc # debug -CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic \ - -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE -LDFLAGS = ${LIBS} +#CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic \ +# -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE +#LDFLAGS = ${LIBS} # optimized -#CFLAGS = -O2 -std=c99 \ -# -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE -#LDFLAGS = -s ${LIBS} +CFLAGS = -O2 -std=c99 \ + -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE +LDFLAGS = -s ${LIBS} # optimized static #CFLAGS = -static -O2 -std=c99 \ |