diff options
author | mutantturkey <crazycal00@gmail.com> | 2010-04-25 07:42:05 -0400 |
---|---|---|
committer | mutantturkey <crazycal00@gmail.com> | 2010-04-25 07:42:05 -0400 |
commit | f1e4760b93bf43e98cf8ba5d68f1e193d4aabe3f (patch) | |
tree | 3aa39b81020aa802c945856cea5b570790bd79f0 /config.mk | |
parent | d2c339cd4db9ddb9cb8b2c86d56ee8c238d6d14a (diff) |
config.mk update, optimization at O3 and static linking
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.4 # 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 -O3 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -O3 -static ${INCS} ${CPPFLAGS} LDFLAGS = -s ${LIBS} # Solaris |