diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2013-11-04 09:39:44 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2013-11-04 09:39:44 -0500 |
commit | 7eb938eef962b34ce635fe6f0331a390ab38db92 (patch) | |
tree | 87e973e0ca8e2bdbb03355723e6f50386f89eebf /config.mk | |
parent | 6af44e7f07d84af3a2639f0db4a2031d814288c6 (diff) |
use pkg-config for libs
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ MANPREFIX = ${PREFIX}/share/man # includes and libs GTKINC=$(shell pkg-config --cflags gtk+-2.0 vte glib-2.0) -GTKLIB=-lvte +GTKLIB=$(shell pkg-config --libs gtk+-2.0 vte glib-2.0) INCS = -I. -I/usr/include ${GTKINC} LIBS = -L/usr/lib -lc ${GTKLIB} |