From: Matthias Wachs Date: Wed, 11 Jan 2012 12:41:23 +0000 (+0000) Subject: adding glpk to the makefile X-Git-Tag: initial-import-from-subversion-38251~15355 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d36ea67729b309be186660bada3d795950adef3b;p=oweals%2Fgnunet.git adding glpk to the makefile --- diff --git a/src/ats/Makefile.am b/src/ats/Makefile.am index 319c6367a..f2fe12b44 100644 --- a/src/ats/Makefile.am +++ b/src/ats/Makefile.am @@ -13,6 +13,10 @@ if USE_COVERAGE AM_CFLAGS = -fprofile-arcs -ftest-coverage endif +if HAVE_LIBGLPK + GN_LIBGLPK = -lglpk +endif + lib_LTLIBRARIES = libgnunetats.la libgnunetats_la_SOURCES = \ @@ -39,6 +43,7 @@ gnunet_service_ats_SOURCES = \ gnunet_service_ats_LDADD = \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/util/libgnunetutil.la \ + $(GN_LIBGLPK) \ $(GN_LIBINTL)