diff options
author | Aaron Marcher <info@nulltime.net> | 2016-08-16 17:34:50 +0200 |
---|---|---|
committer | Aaron Marcher (drkhsh) <info@nulltime.net> | 2016-08-16 17:34:50 +0200 |
commit | f9748dcca37f1f573fdbcb785646b95fe4626e4f (patch) | |
tree | a5e1fe74e05bebc7fb22899f7801b85619d33c2c /config.mk | |
parent | ad8ab20c638998f71e9eb01c54820231db9a1079 (diff) |
Removed the debug gcc flags
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,9 +16,9 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE -CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -g ${LIBS} +LDFLAGS = ${LIBS} #LDFLAGS = -s ${LIBS} # Solaris |