aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2013-11-04 09:39:44 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2013-11-04 09:39:44 -0500
commit7eb938eef962b34ce635fe6f0331a390ab38db92 (patch)
tree87e973e0ca8e2bdbb03355723e6f50386f89eebf
parent6af44e7f07d84af3a2639f0db4a2031d814288c6 (diff)
use pkg-config for libs
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 0885e1d..5f58aa3 100644
--- a/config.mk
+++ b/config.mk
@@ -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}