diff options
author | mutantturkey <crazycal00@gmail.com> | 2010-12-22 11:33:50 -0500 |
---|---|---|
committer | mutantturkey <crazycal00@gmail.com> | 2010-12-22 11:33:50 -0500 |
commit | 1f32d86a9956d04254747f9da2693f3d846637ab (patch) | |
tree | 2744e0e38e064cc159b637e8943ba6672c46d15d /config.mk | |
parent | b35e32c500e68df4236a1b9073ff9a7a2fbbe5fc (diff) |
added -Wall to CFLAGS
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ # mocicon version -VERSION = 0.1.4 +VERSION = 0.1.5 # Customize below to fit your system @@ -17,7 +17,7 @@ INCS = -I. -I/usr/include ${GTKINC} LIBS = -L/usr/lib -lc ${GTKLIB} # flags CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -CFLAGS = -std=c99 -O2 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -Wall -O2 ${INCS} ${CPPFLAGS} LDFLAGS = -s ${LIBS} # Solaris |