diff options
author | Wouter Van Rooy <woutervanrooy@gmail.com> | 2012-06-17 12:40:01 +0200 |
---|---|---|
committer | Wouter Van Rooy <woutervanrooy@gmail.com> | 2012-06-17 12:40:01 +0200 |
commit | 695af4b69b1baaf7626f1a6e10be39615174f5c6 (patch) | |
tree | b0eb6a8efb6b061150394b2064c2fb0d3367d695 /config.mk | |
parent | 00a7c05a23487f4baa3969b8b507d8fcbc9fe978 (diff) |
Some code cleanup and removal of superfluous code
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,12 +30,12 @@ MANPREFIX = ${PREFIX}/share/man # includes and libs GTKINC=$(shell pkg-config --cflags gtk+-2.0 vte ) -GTKLIB=$(shell pkg-config --libs gtk+-2.0 vte ) +GTKLIB=-lvte INCS = -I. -I/usr/include ${GTKINC} LIBS = -L/usr/lib -lc ${GTKLIB} # flags -CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} +CPPFLAGS = -DVERSION=\"${VERSION}\" CFLAGS = -mtune=native -std=gnu99 -O3 ${INCS} ${CPPFLAGS} LDFLAGS = -s ${LIBS} |