diff options
author | Ali H. Fardan <raiz@firemail.cc> | 2016-08-21 15:43:57 +0300 |
---|---|---|
committer | Ali H. Fardan <raiz@firemail.cc> | 2016-08-21 15:43:57 +0300 |
commit | 6f31ca6ce3ea722c7d1ecfe2099108133ce4215c (patch) | |
tree | 97d413f6c36c09553f77a3653d0726ca3fda6da1 /config.mk | |
parent | 8e039b9dd2a7079d2b80a244d753eecf2feaa954 (diff) |
fixed compiler warnings in a better way
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE -CFLAGS = -std=c99 -pedantic -Wall -Wextra -O0 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS} #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} #LDFLAGS = -s ${LIBS} |